comparison src/protocols/jabber/iq.c @ 7116:6c8706109f92

[gaim-migrate @ 7683] fix a big ugly memleak on jabber account signoff, fix the img display in vcards until the gtk code can be talked into understanding proper XHTML, and a few misc other things I felt like getting out of my tree. committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Thu, 02 Oct 2003 01:58:26 +0000
parents 1350352f5818
children 1cf80749f2f0
comparison
equal deleted inserted replaced
7115:7bee4be16385 7116:6c8706109f92
227 jabber_iq_handle_time(js, packet); 227 jabber_iq_handle_time(js, packet);
228 } else if(!strcmp(xmlns, "jabber:iq:version")) { 228 } else if(!strcmp(xmlns, "jabber:iq:version")) {
229 jabber_iq_handle_version(js, packet); 229 jabber_iq_handle_version(js, packet);
230 } else if(!strcmp(xmlns, "jabber:iq:register")) { 230 } else if(!strcmp(xmlns, "jabber:iq:register")) {
231 jabber_register_parse(js, packet); 231 jabber_register_parse(js, packet);
232 } else if(!strcmp(xmlns, "jabber:iq:oob")) {
233 /* XXX: need to re-implement file receive for the old-skool way */
232 } else { 234 } else {
233 gaim_debug(GAIM_DEBUG_WARNING, "jabber", "Unknown query: %s\n", xmlns); 235 gaim_debug(GAIM_DEBUG_WARNING, "jabber", "Unknown query: %s\n", xmlns);
234 } 236 }
235 } 237 }
236 238