diff -r 474aa8caba58 -r e9896003ea75 src/protocols/jabber/jabber.c --- a/src/protocols/jabber/jabber.c Mon Jan 05 13:47:20 2004 +0000 +++ b/src/protocols/jabber/jabber.c Mon Jan 05 17:42:36 2004 +0000 @@ -582,7 +582,7 @@ for(x = packet->child; x; x = x->next) { const char *xmlns; - if(strcmp(x->name, "x")) + if(x->type != NODE_TYPE_TAG || strcmp(x->name, "x")) continue; if(!(xmlns = xmlnode_get_attrib(x, "xmlns")))