diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2007-04-22 13:44:27 -0700 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2007-04-22 13:44:27 -0700 |
commit | e35d1a121d5fb2da3698fbe4a365fe38d0097665 (patch) | |
tree | 390223f2df5aaaebb35c1bb118cbf2fbd69ecab9 /protocols/jabber/xmltree.c | |
parent | c737ba70c7b3510ffb6bed8f9373e63b1a150c1b (diff) |
Read-only support for Jabber conferences (non-anonymous rooms only).
Just don't use this, you're really not going to like it. :-)
Diffstat (limited to 'protocols/jabber/xmltree.c')
-rw-r--r-- | protocols/jabber/xmltree.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/protocols/jabber/xmltree.c b/protocols/jabber/xmltree.c index 7a165a1e..c8bef362 100644 --- a/protocols/jabber/xmltree.c +++ b/protocols/jabber/xmltree.c @@ -187,6 +187,8 @@ 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 ); + st = xt->handlers[i].func( node, xt->data ); if( st == XT_ABORT ) |