aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/imap/camel-imap-store.c
diff options
context:
space:
mode:
Diffstat (limited to 'camel/providers/imap/camel-imap-store.c')
-rw-r--r--camel/providers/imap/camel-imap-store.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/providers/imap/camel-imap-store.c b/camel/providers/imap/camel-imap-store.c
index 7589aedcab..580a889078 100644
--- a/camel/providers/imap/camel-imap-store.c
+++ b/camel/providers/imap/camel-imap-store.c
@@ -409,7 +409,7 @@ try_auth (CamelImapStore *store, const char *mech, CamelException *ex)
if (camel_exception_is_set (ex))
goto break_and_lose;
- response = camel_imap_command_continuation (store, ex, sasl_resp);
+ response = camel_imap_command_continuation (store, sasl_resp, ex);
g_free (sasl_resp);
if (!response)
goto lose;
@@ -430,7 +430,7 @@ try_auth (CamelImapStore *store, const char *mech, CamelException *ex)
break_and_lose:
/* Get the server out of "waiting for continuation data" mode. */
- response = camel_imap_command_continuation (store, NULL, "*");
+ response = camel_imap_command_continuation (store, "*", NULL);
if (response)
camel_imap_response_free (store, response);