Changed adding iq handlers to take no args

This commit is contained in:
James Booth
2013-01-28 23:54:49 +00:00
parent bfe1d76e5f
commit a30474f9fc
3 changed files with 5 additions and 3 deletions

View File

@@ -665,7 +665,7 @@ _connection_handler(xmpp_conn_t * const conn,
xmpp_handler_add(conn, _message_handler, NULL, STANZA_NAME_MESSAGE, NULL, ctx);
xmpp_handler_add(conn, presence_handler, NULL, STANZA_NAME_PRESENCE, NULL, ctx);
iq_add_handlers(conn, ctx);
iq_add_handlers();
if (prefs_get_autoping() != 0) {
int millis = prefs_get_autoping() * 1000;