diff options
author | Vivek Dasmohapatra <vivek@collabora.co.uk> | 2009-07-21 19:15:44 +0100 |
---|---|---|
committer | Vivek Dasmohapatra <vivek@collabora.co.uk> | 2009-08-04 11:55:46 +0100 |
commit | 3d415b6806790622086d3df10b562c484af35230 (patch) | |
tree | 7650bacc82d26853ceeabdb793c32e66cf5e4f9c /tests/wocky-test-sasl-auth-server.c | |
parent | 75fc9f5fc79dad7a325d2e9bab366879bdf5389d (diff) |
Add ID paramater to stream open methods (needed for server stream open)
Diffstat (limited to 'tests/wocky-test-sasl-auth-server.c')
-rw-r--r-- | tests/wocky-test-sasl-auth-server.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/wocky-test-sasl-auth-server.c b/tests/wocky-test-sasl-auth-server.c index 294ee02..b7ccc47 100644 --- a/tests/wocky-test-sasl-auth-server.c +++ b/tests/wocky-test-sasl-auth-server.c @@ -217,7 +217,7 @@ stream_open_received (GObject *source, NULL)); wocky_xmpp_connection_send_open_async (priv->conn, - NULL, "testserver", "1.0", NULL, + NULL, "testserver", "1.0", NULL, "0-HA2", NULL, stream_open_sent, self); } @@ -308,7 +308,7 @@ post_auth_open_received (GObject *source, user_data)); wocky_xmpp_connection_send_open_async ( WOCKY_XMPP_CONNECTION (source), - NULL, "testserver", "1.0", NULL, + NULL, "testserver", "1.0", NULL, "0-HA1", NULL, post_auth_open_sent, user_data); } |