diff options
author | Aurelien Foret <aurelien@archlinux.org> | 2005-10-09 00:17:46 +0200 |
---|---|---|
committer | Aurelien Foret <aurelien@archlinux.org> | 2005-10-09 00:17:46 +0200 |
commit | 79a20cdc9685b64f36eb15bc57c06209bceb225f (patch) | |
tree | dd9b4c22343bfe5d67975146f58490bfee92807e | |
parent | 9dbce1b8d7439bf657d55a08052e053fc5f4f6ba (diff) | |
download | pacman-79a20cdc9685b64f36eb15bc57c06209bceb225f.tar.gz pacman-79a20cdc9685b64f36eb15bc57c06209bceb225f.tar.xz |
Added an error string for lock file creation failure
-rw-r--r-- | lib/libalpm/error.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/libalpm/error.c b/lib/libalpm/error.c index c2b15414..3b7797c7 100644 --- a/lib/libalpm/error.c +++ b/lib/libalpm/error.c @@ -82,6 +82,9 @@ char *alpm_strerror(int err) return "could not resolve dependencies"; case PM_ERR_FILE_CONFLICTS: return "conflicting files"; + /* System */ + case PM_ERR_HANDLE_LOCK: + return "could not create the lock file"; default: return "unexpected error"; } |