summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/error.c
diff options
context:
space:
mode:
authorDave Reisner <d@falconindy.com>2011-01-15 21:38:16 +0100
committerDave Reisner <d@falconindy.com>2011-03-09 21:22:32 +0100
commit8a58648471e3a5311529955cd91c1a082be10056 (patch)
tree73ac218ceddd87de4264d38afa922bc2c493edb9 /lib/libalpm/error.c
parenta5b6a75787be01fc2a030b68eeaba07bc26db469 (diff)
downloadpacman-8a58648471e3a5311529955cd91c1a082be10056.tar.gz
pacman-8a58648471e3a5311529955cd91c1a082be10056.tar.xz
handle error case for PM_ERR_LIBCURL
Add PM_ERR_LIBCURL to error enum and handle case in error.c by returning curl_easy_strerror() based on the error number carried by the gloabl alpm handle. Signed-off-by: Dave Reisner <d@falconindy.com>
Diffstat (limited to 'lib/libalpm/error.c')
-rw-r--r--lib/libalpm/error.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/libalpm/error.c b/lib/libalpm/error.c
index aec97a1f..19c7d92c 100644
--- a/lib/libalpm/error.c
+++ b/lib/libalpm/error.c
@@ -39,6 +39,7 @@
/* libalpm */
#include "util.h"
#include "alpm.h"
+#include "handle.h"
const char SYMEXPORT *alpm_strerrorlast(void)
{
@@ -158,6 +159,13 @@ const char SYMEXPORT *alpm_strerror(int err)
/* obviously shouldn't get here... */
return _("download library error");
#endif
+ case PM_ERR_LIBCURL:
+#ifdef HAVE_LIBCURL
+ return(curl_easy_strerror(handle->curlerr));
+#else
+ /* obviously shouldn't get here... */
+ return _("download library error");
+#endif
case PM_ERR_EXTERNAL_DOWNLOAD:
return _("error invoking external downloader");
/* Unknown error! */