Changeset 5a673f3
- Timestamp:
- 2010-05-09T13:04:45Z (15 years ago)
- Branches:
- master
- Children:
- dcd16c5
- Parents:
- 47fae0f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/oscar/oscar.c
r47fae0f r5a673f3 255 255 256 256 u = t = g_strdup(s); 257 258 strcpy(t, s);259 257 g_strdown(t); 260 258 … … 2090 2088 static int gaim_ssi_parselist(aim_session_t *sess, aim_frame_t *fr, ...) { 2091 2089 struct im_connection *ic = sess->aux_data; 2092 struct aim_ssi_item *curitem ;2090 struct aim_ssi_item *curitem, *curgroup; 2093 2091 int tmp; 2094 2092 char *nrm; … … 2106 2104 if (curitem->data && aim_gettlv(curitem->data, 0x0131, 1)) 2107 2105 realname = aim_gettlv_str(curitem->data, 0x0131, 1); 2108 2109 imcb_add_buddy(ic, nrm, NULL);2106 2107 imcb_add_buddy(ic, nrm, curgroup->gid == curitem->gid ? curgroup->name : NULL); 2110 2108 2111 2109 if (realname) { … … 2115 2113 } 2116 2114 } 2115 break; 2116 2117 case 0x0001: /* Group */ 2118 curgroup = curitem; 2117 2119 break; 2118 2120
Note: See TracChangeset
for help on using the changeset viewer.