diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2007-04-22 22:18:47 -0700 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2007-04-22 22:18:47 -0700 |
commit | 2d317bbe8def887fb796b2daaa958c59d8f4c070 (patch) | |
tree | 6047b3717b16a84788066ce2f2fa9f880810b304 /protocols/jabber/xmltree.c | |
parent | 0e7ab64dfb66192a875c37322ca6f8a364ec5bc8 (diff) |
Fixes: handling of being kicked, now sending <presence/> tags to all
conferences the user's in.
Diffstat (limited to 'protocols/jabber/xmltree.c')
-rw-r--r-- | protocols/jabber/xmltree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/jabber/xmltree.c b/protocols/jabber/xmltree.c index 9e16b939..c8bef362 100644 --- a/protocols/jabber/xmltree.c +++ b/protocols/jabber/xmltree.c @@ -187,7 +187,7 @@ int xt_handle( struct xt_parser *xt, struct xt_node *node, int depth ) /* If there's no parent, the handler should mention <root> as a parent. */ g_strcasecmp( xt->handlers[i].parent, "<root>" ) == 0 ) ) ) { -// xt_print( node ); + xt_print( node ); st = xt->handlers[i].func( node, xt->data ); |