aboutsummaryrefslogtreecommitdiffstats
path: root/camel
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-08-11 02:35:46 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-08-11 02:35:46 +0800
commit7dcd2540eb0b6eb8dfc8573c96301b334a37d188 (patch)
tree64caced3d6c84385130120990a7f7a602b2907d4 /camel
parent42ab5199eb34f8d4937dc740a7d9a8daabe43102 (diff)
downloadgsoc2013-evolution-7dcd2540eb0b6eb8dfc8573c96301b334a37d188.tar
gsoc2013-evolution-7dcd2540eb0b6eb8dfc8573c96301b334a37d188.tar.gz
gsoc2013-evolution-7dcd2540eb0b6eb8dfc8573c96301b334a37d188.tar.bz2
gsoc2013-evolution-7dcd2540eb0b6eb8dfc8573c96301b334a37d188.tar.lz
gsoc2013-evolution-7dcd2540eb0b6eb8dfc8573c96301b334a37d188.tar.xz
gsoc2013-evolution-7dcd2540eb0b6eb8dfc8573c96301b334a37d188.tar.zst
gsoc2013-evolution-7dcd2540eb0b6eb8dfc8573c96301b334a37d188.zip
Return FALSE here, not NULL.
2001-08-10 Jeffrey Stedfast <fejj@ximian.com> * providers/imap/camel-imap-command.c (imap_command_start): Return FALSE here, not NULL. svn path=/trunk/; revision=11893
Diffstat (limited to 'camel')
-rw-r--r--camel/ChangeLog3
-rw-r--r--camel/providers/imap/camel-imap-command.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 0fc3e6d349..e64ba22187 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,5 +1,8 @@
2001-08-10 Jeffrey Stedfast <fejj@ximian.com>
+ * providers/imap/camel-imap-command.c (imap_command_start): Return
+ FALSE here, not NULL.
+
* providers/imap/camel-imap-folder.c (imap_rescan): Don't
g_strdup() the uid into the trigger_event call.
diff --git a/camel/providers/imap/camel-imap-command.c b/camel/providers/imap/camel-imap-command.c
index b5b80624ef..6dae25af85 100644
--- a/camel/providers/imap/camel-imap-command.c
+++ b/camel/providers/imap/camel-imap-command.c
@@ -177,7 +177,7 @@ imap_command_start (CamelImapStore *store, CamelFolder *folder,
response = camel_imap_command (store, folder, ex, NULL);
if (!response)
- return NULL;
+ return FALSE;
camel_exception_init (&internal_ex);
camel_imap_folder_selected (folder, response, &internal_ex);
camel_imap_response_free (store, response);