# HG changeset patch # User Nathan Walp # Date 1118290339 0 # Node ID 27f0322f06f7b7e1bb12089a3fa6298d1c541905 # Parent a8a7730db73c45001bd5317b0954c64d90bae16d [gaim-migrate @ 12825] make registrations work on jabber.org, and other XMPP servers committer: Tailor Script diff -r a8a7730db73c -r 27f0322f06f7 src/protocols/jabber/jabber.c --- a/src/protocols/jabber/jabber.c Thu Jun 09 04:03:20 2005 +0000 +++ b/src/protocols/jabber/jabber.c Thu Jun 09 04:12:19 2005 +0000 @@ -128,7 +128,9 @@ return; } - if(xmlnode_get_child(packet, "mechanisms")) { + if(js->registration) { + jabber_register_start(js); + } else if(xmlnode_get_child(packet, "mechanisms")) { jabber_auth_start(js, packet); } else if(xmlnode_get_child(packet, "bind")) { xmlnode *bind, *resource;