From f0bcf06559405a3de5271f4aeb3472c8a2b7aeb3 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Thu, 29 Jun 2000 18:51:03 +0000 Subject: imap_expunge should now give more meaningful errors svn path=/trunk/; revision=3798 --- camel/ChangeLog | 5 +++++ camel/providers/imap/camel-imap-folder.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/camel/ChangeLog b/camel/ChangeLog index e8344c9f88..8c8dedb695 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,8 @@ +2000-06-29 Jeffrey Stedfast + + * providers/imap/camel-imap-folder.c (imap_expunge): Should now + print a meaningful error message when it doesn't succeed + 2000-06-28 Jeffrey Stedfast * providers/imap/camel-imap-store.c (imap_connect): Changed to diff --git a/camel/providers/imap/camel-imap-folder.c b/camel/providers/imap/camel-imap-folder.c index 6ab0fff9df..602d0bc8b0 100644 --- a/camel/providers/imap/camel-imap-folder.c +++ b/camel/providers/imap/camel-imap-folder.c @@ -349,13 +349,13 @@ imap_expunge (CamelFolder *folder, CamelException *ex) camel_exception_setv (ex, CAMEL_EXCEPTION_SERVICE_UNAVAILABLE, "Could not EXPUNGE from IMAP server %s: %s.", service->url->host, - status == CAMEL_IMAP_ERR ? result : + status == CAMEL_IMAP_ERR && result ? result : "Unknown error"); g_free (result); return; } - g_free(result); + g_free (result); } #if 0 -- cgit v1.2.3