Changes in protocols/jabber/iq.c [40cfbc5:5ebff60]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/iq.c
r40cfbc5 r5ebff60 27 27 static xt_status jabber_parse_roster(struct im_connection *ic, struct xt_node *node, struct xt_node *orig); 28 28 static xt_status jabber_iq_display_vcard(struct im_connection *ic, struct xt_node *node, struct xt_node *orig); 29 static int jabber_iq_disco_server(struct im_connection *ic); 29 30 30 31 xt_status jabber_pkt_iq(struct xt_node *node, gpointer data) … … 373 374 static xt_status jabber_parse_roster(struct im_connection *ic, struct xt_node *node, struct xt_node *orig) 374 375 { 375 struct jabber_data *jd = ic->proto_data;376 376 struct xt_node *query, *c; 377 377 int initial = (orig != NULL); … … 388 388 char *name = xt_find_attr(c, "name"); 389 389 char *sub = xt_find_attr(c, "subscription"); 390 char *mention_name = xt_find_attr(c, "mention_name");391 390 392 391 if (jid && sub) { … … 397 396 if (name) { 398 397 imcb_rename_buddy(ic, jid, name); 399 }400 401 /* This could also be used to set the full name as nick for fb/gtalk,402 * but i'm keeping the old (ugly?) default behavior just to be safe */403 if (mention_name && (jd->flags & JFLAG_HIPCHAT)) {404 imcb_buddy_nick_hint(ic, jid, mention_name);405 398 } 406 399 } else if (strcmp(sub, "remove") == 0) { … … 862 855 struct xt_node *node, struct xt_node *orig); 863 856 864 int jabber_iq_disco_server(struct im_connection *ic)857 static int jabber_iq_disco_server(struct im_connection *ic) 865 858 { 866 859 struct xt_node *node, *iq;
Note: See TracChangeset
for help on using the changeset viewer.