diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2007-04-22 16:39:37 -0700 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2007-04-22 16:39:37 -0700 |
commit | 43671b964b636520a54e343542c5958b30e9f589 (patch) | |
tree | c503e4eaa46677f964ebd588665cede72f96c1a8 /protocols/jabber/xmltree.c | |
parent | e35d1a121d5fb2da3698fbe4a365fe38d0097665 (diff) |
You can send messages too now. But it's still very kludgy and doesn't work
with anonymous rooms (ie about 95% of all available Jabber chatrooms?).
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 c8bef362..9e16b939 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 ); |