diff options
author | Dan McGee <dan@archlinux.org> | 2009-09-20 19:09:10 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2009-09-20 19:09:10 +0200 |
commit | 6bfca2fd14d07a18d7000d1f9dd998428036656f (patch) | |
tree | c766b1ea0071f17857a975b15f53a8f77909f46d /lib/libalpm/be_files.c | |
parent | ef3716877032941f7882c11c5a091abef95ef983 (diff) | |
parent | 338c6546ff86acbb25c1508439adfb89c3dea952 (diff) | |
download | pacman-6bfca2fd14d07a18d7000d1f9dd998428036656f.tar.gz pacman-6bfca2fd14d07a18d7000d1f9dd998428036656f.tar.xz |
Merge branch 'maint'
Message updates made this one a bit messy, but nothing too bad.
Conflicts:
lib/libalpm/add.c
lib/libalpm/remove.c
Diffstat (limited to 'lib/libalpm/be_files.c')
-rw-r--r-- | lib/libalpm/be_files.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/be_files.c b/lib/libalpm/be_files.c index 03a14637..d698e018 100644 --- a/lib/libalpm/be_files.c +++ b/lib/libalpm/be_files.c @@ -125,7 +125,7 @@ static int checkdbdir(pmdb_t *db) RET_ERR(PM_ERR_SYSTEM, -1); } } else if(!S_ISDIR(buf.st_mode)) { - _alpm_log(PM_LOG_WARNING, "removing bogus database: %s\n", path); + _alpm_log(PM_LOG_WARNING, _("removing invalid database: %s\n"), path); if(unlink(path) != 0 || _alpm_makepath(path) != 0) { RET_ERR(PM_ERR_SYSTEM, -1); } |