[evolution-data-server] Fix return types and mark a function static



commit 65fff91cbe98e4e95019883bd2c67571c960ff26
Author: Kjartan Maraas <kmaraas gnome org>
Date:   Sat Sep 26 12:44:12 2009 +0200

    Fix return types and mark a function static

 camel/providers/imap/camel-imap-command.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/camel/providers/imap/camel-imap-command.c b/camel/providers/imap/camel-imap-command.c
index d87f1db..27beb32 100644
--- a/camel/providers/imap/camel-imap-command.c
+++ b/camel/providers/imap/camel-imap-command.c
@@ -263,12 +263,12 @@ camel_imap_command_continuation (CamelImapStore *store, const gchar *cmd,
 
 	if (!store->ostream) {
 		camel_exception_set (ex, CAMEL_EXCEPTION_STORE_INVALID, _("No output stream"));
-		return FALSE;
+		return NULL;
 	}
 
 	if (!store->istream) {
 		camel_exception_set (ex, CAMEL_EXCEPTION_STORE_INVALID, _("No input stream"));
-		return FALSE;
+		return NULL;
 	}
 
 	if (camel_stream_write (store->ostream, cmd, cmdlen) == -1 ||
@@ -372,7 +372,7 @@ camel_imap_command_response (CamelImapStore *store, gchar **response,
 	return type;
 }
 
-CamelImapResponse *
+static CamelImapResponse *
 imap_read_response (CamelImapStore *store, CamelException *ex)
 {
 	CamelImapResponse *response;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]