diff src/protocols/jabber/jabber.c @ 3708:da6e3c984985

[gaim-migrate @ 3841] host mask on join thanks to birme (required change to the function) committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Tue, 15 Oct 2002 22:27:57 +0000
parents 11ab2a5f6677
children 988485669631
line wrap: on
line diff
--- a/src/protocols/jabber/jabber.c	Tue Oct 15 20:02:14 2002 +0000
+++ b/src/protocols/jabber/jabber.c	Tue Oct 15 22:27:57 2002 +0000
@@ -1408,7 +1408,7 @@
 		if (p->from->resource) {
 			if (!y) {
 				if (!find_chat_buddy(jc->b, p->from->resource)) {
-					add_chat_buddy(jc->b, p->from->resource);
+					add_chat_buddy(jc->b, p->from->resource, NULL);
 				} else if ((y = xmlnode_get_tag(p->x, "status"))) {
 					jabber_track_away(gjc, p, NULL);
 				}
@@ -1569,7 +1569,7 @@
 					return;
 				}
 				if (!find_chat_buddy(jc->b, gjid->resource)) {
-					add_chat_buddy(jc->b, gjid->resource);
+					add_chat_buddy(jc->b, gjid->resource, NULL);
 				}
 			}
 		}