index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Dan McGee <dan@archlinux.org> | 2011-08-08 17:11:14 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-08-08 17:11:14 -0500 |
commit | 09f950af073ca82b03ef50dd6402fd72491a4770 (patch) | |
tree | 3e990bfc9c69af8ac05574c14c54660ae3bd0a74 /lib/libalpm/util.c | |
parent | 8fa330335f9eb465724ed778464502f844e930ae (diff) |
-rw-r--r-- | lib/libalpm/util.c | 12 |
diff --git a/lib/libalpm/util.c b/lib/libalpm/util.c index 123cd24e..bd0526ce 100644 --- a/lib/libalpm/util.c +++ b/lib/libalpm/util.c @@ -1011,16 +1011,20 @@ int _alpm_access(alpm_handle_t *handle, const char *dir, const char *file, int a if(ret != 0) { if (amode & R_OK) { - _alpm_log(handle, ALPM_LOG_DEBUG, _("\"%s%s\" is not readable: %s\n"), dir, file, strerror(errno)); + _alpm_log(handle, ALPM_LOG_DEBUG, "\"%s%s\" is not readable: %s\n", + dir, file, strerror(errno)); } if (amode & W_OK) { - _alpm_log(handle, ALPM_LOG_DEBUG, _("\"%s%s\" is not writable: %s\n"), dir, file, strerror(errno)); + _alpm_log(handle, ALPM_LOG_DEBUG, "\"%s%s\" is not writable: %s\n", + dir, file, strerror(errno)); } if (amode & X_OK) { - _alpm_log(handle, ALPM_LOG_DEBUG, _("\"%s%s\" is not executable: %s\n"), dir, file, strerror(errno)); + _alpm_log(handle, ALPM_LOG_DEBUG, "\"%s%s\" is not executable: %s\n", + dir, file, strerror(errno)); } if (amode == F_OK) { - _alpm_log(handle, ALPM_LOG_DEBUG, _("\"%s%s\" does not exist: %s\n"), dir, file, strerror(errno)); + _alpm_log(handle, ALPM_LOG_DEBUG, "\"%s%s\" does not exist: %s\n", + dir, file, strerror(errno)); } } return ret; |