Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/jabber/iq.c

    r0e4c3dd r5ebff60  
    2727static xt_status jabber_parse_roster(struct im_connection *ic, struct xt_node *node, struct xt_node *orig);
    2828static xt_status jabber_iq_display_vcard(struct im_connection *ic, struct xt_node *node, struct xt_node *orig);
     29static int jabber_iq_disco_server(struct im_connection *ic);
    2930
    3031xt_status jabber_pkt_iq(struct xt_node *node, gpointer data)
     
    387388                char *name = xt_find_attr(c, "name");
    388389                char *sub = xt_find_attr(c, "subscription");
    389                 char *mention_name = xt_find_attr(c, "mention_name");
    390                 char *nick = mention_name ? : name;
    391390
    392391                if (jid && sub) {
     
    397396                                if (name) {
    398397                                        imcb_rename_buddy(ic, jid, name);
    399                                 }
    400 
    401                                 if (nick) {
    402                                         imcb_buddy_nick_hint(ic, jid, nick);
    403398                                }
    404399                        } else if (strcmp(sub, "remove") == 0) {
     
    860855                                                 struct xt_node *node, struct xt_node *orig);
    861856
    862 int jabber_iq_disco_server(struct im_connection *ic)
     857static int jabber_iq_disco_server(struct im_connection *ic)
    863858{
    864859        struct xt_node *node, *iq;
Note: See TracChangeset for help on using the changeset viewer.