[evolution-data-server] imapx: Fix handling of return from camel_imapx_stream_text()
- From: David Woodhouse <dwmw2 src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution-data-server] imapx: Fix handling of return from camel_imapx_stream_text()
- Date: Sun, 11 Jul 2010 11:38:17 +0000 (UTC)
commit 436634e0ba281199788e7b6535f4c99b0d881ebd
Author: David Woodhouse <David Woodhouse intel com>
Date: Sun Jul 11 12:36:19 2010 +0100
imapx: Fix handling of return from camel_imapx_stream_text()
It's another of those functions that return 0 for success.
camel/providers/imapx/camel-imapx-server.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/camel/providers/imapx/camel-imapx-server.c b/camel/providers/imapx/camel-imapx-server.c
index f25eac4..52c36ae 100644
--- a/camel/providers/imapx/camel-imapx-server.c
+++ b/camel/providers/imapx/camel-imapx-server.c
@@ -1586,7 +1586,7 @@ imapx_untagged(CamelIMAPXServer *imap, GError **error)
case IMAPX_BYE: {
guchar *token;
- if (!camel_imapx_stream_text (imap->stream, &token, NULL)) {
+ if (camel_imapx_stream_text (imap->stream, &token, NULL)) {
c(printf("BYE: %s\n", token));
g_set_error (
error, CAMEL_IMAPX_ERROR, 1,
@@ -1732,7 +1732,7 @@ imapx_continuation(CamelIMAPXServer *imap, gboolean litplus, GError **error)
gchar *resp;
guchar *token;
- if (!camel_imapx_stream_text (imap->stream, &token, error))
+ if (camel_imapx_stream_text (imap->stream, &token, error))
return -1;
resp = camel_sasl_challenge_base64((CamelSasl *)cp->ob, (const gchar *) token, error);
@@ -2771,7 +2771,7 @@ imapx_connect_to_server (CamelIMAPXServer *is, GError **error)
break;
}
camel_imapx_stream_ungettoken(is->stream, tok, token, len);
- if (!camel_imapx_stream_text (is->stream, &token, error))
+ if (camel_imapx_stream_text (is->stream, &token, error))
return FALSE;
e(printf("Got unexpected line before greeting: '%s'\n", token));
g_free(token);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]