comparison src/protocols/oscar/ssi.c @ 8227:b01822d23da3

[gaim-migrate @ 8950] Make the "use Recent Buddies group" option work :-) Buddies get added to the group by the server, and when they do they show up in Gaim. It is VERY swanky. There is not yet a way to set this option in Gaim, but I definitely want to add an option for it. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Wed, 11 Feb 2004 05:18:05 +0000
parents c5e3797e7dbb
children 4f70e8b3e05e
comparison
equal deleted inserted replaced
8226:c5e3797e7dbb 8227:b01822d23da3
1371 else 1371 else
1372 data = NULL; 1372 data = NULL;
1373 1373
1374 aim_ssi_itemlist_add(&sess->ssi.local, name, gid, bid, type, data); 1374 aim_ssi_itemlist_add(&sess->ssi.local, name, gid, bid, type, data);
1375 aim_ssi_itemlist_add(&sess->ssi.official, name, gid, bid, type, data); 1375 aim_ssi_itemlist_add(&sess->ssi.official, name, gid, bid, type, data);
1376 aim_tlvlist_free(&data);
1377
1378 if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype)))
1379 ret = userfunc(sess, rx, type, name);
1380
1376 free(name); 1381 free(name);
1377 aim_tlvlist_free(&data);
1378
1379 if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype)))
1380 ret = userfunc(sess, rx);
1381 } 1382 }
1382 1383
1383 return ret; 1384 return ret;
1384 } 1385 }
1385 1386