summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorEitan Isaacson <eitan.isaacson@collabora.co.uk>2010-05-25 12:11:12 -0700
committerEitan Isaacson <eitan.isaacson@collabora.co.uk>2010-06-08 07:44:00 -0700
commitd82d98f0234a753a226ec18b0c7b065a61f8d3e0 (patch)
tree189d0a5aa7739d203096126baa674fda218560fe /examples
parent642d874431617fffa170c48cfdb8cabe5510041f (diff)
Properly use is_secure argument in wocky_auth_registry_start_auth_async.
Diffstat (limited to 'examples')
-rw-r--r--examples/connect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/connect.c b/examples/connect.c
index d9f3825..b173f24 100644
--- a/examples/connect.c
+++ b/examples/connect.c
@@ -85,8 +85,8 @@ ssl_features_received_cb (GObject *source,
sasl = wocky_sasl_auth_new (server, username, password, conn, NULL);
- wocky_sasl_auth_authenticate_async (sasl, stanza, TRUE,
- NULL, auth_done_cb, NULL);
+ wocky_sasl_auth_authenticate_async (sasl, stanza, TRUE, FALSE, NULL,
+ auth_done_cb, NULL);
}