diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2007-11-19 23:16:18 +0000 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2007-11-19 23:16:18 +0000 |
commit | 256899f2f9eaa43610af53704d5c7ccbd1aace3b (patch) | |
tree | 080ec69cc51b963efcd5002d9a15ec2f92df3d16 /protocols/jabber/sasl.c | |
parent | cd428e473fe4428041722fd373badef890edebd9 (diff) | |
parent | ef5c1855b406e462fb8b90b517f1672a47bcc4b5 (diff) |
Merging Jabber groupchat support.
Diffstat (limited to 'protocols/jabber/sasl.c')
-rw-r--r-- | protocols/jabber/sasl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/jabber/sasl.c b/protocols/jabber/sasl.c index 6eee37b3..87059051 100644 --- a/protocols/jabber/sasl.c +++ b/protocols/jabber/sasl.c @@ -331,5 +331,5 @@ gboolean sasl_supported( struct im_connection *ic ) { struct jabber_data *jd = ic->proto_data; - return ( (void*) ( jd->xt && jd->xt->root && xt_find_attr( jd->xt->root, "version" ) ) ) != NULL; + return ( jd->xt && jd->xt->root && xt_find_attr( jd->xt->root, "version" ) ) != 0; } |