Mercurial > pidgin
diff src/protocols/jabber/message.c @ 8016:7bae464195c4
[gaim-migrate @ 8696]
fix jabber registrations for XMPP servers
committer: Tailor Script <tailor@pidgin.im>
| author | Nathan Walp <nwalp@pidgin.im> |
|---|---|
| date | Mon, 05 Jan 2004 22:37:07 +0000 |
| parents | 415df6fa0395 |
| children | 7fa6ddec6e30 |
line wrap: on
line diff
--- a/src/protocols/jabber/message.c Mon Jan 05 22:09:29 2004 +0000 +++ b/src/protocols/jabber/message.c Mon Jan 05 22:37:07 2004 +0000 @@ -506,6 +506,8 @@ } else if(!strncmp(msg, "/part", 5)) { jabber_chat_part(chat, strlen(msg) > 6 ? msg+6 : NULL); return 1; + } else if(!strncmp(msg, "/ban", 4)) { + } else if(!strncmp(msg, "/kick", 5)) { } jm = g_new0(JabberMessage, 1);
