comparison src/protocols/oscar/auth.c @ 10866:f38bda97f981

[gaim-migrate @ 12552] Get rid of oscar_add_buddies and oscar_remove_buddies. The versions we were using are almost clones of the ones used in src/server.c when the PRPL does not define its own. I also removed the NOSSI checks, since I'm sure it wouldn't work, if you tried it. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 25 Apr 2005 00:31:24 +0000
parents d087e928ffd1
children ecc0f22db510
comparison
equal deleted inserted replaced
10865:c28766b87f64 10866:f38bda97f981
264 aim_tlvlist_add_16(&tl, 0x001a, (fu16_t)ci->build); 264 aim_tlvlist_add_16(&tl, 0x001a, (fu16_t)ci->build);
265 aim_tlvlist_add_32(&tl, 0x0014, (fu32_t)ci->distrib); 265 aim_tlvlist_add_32(&tl, 0x0014, (fu32_t)ci->distrib);
266 aim_tlvlist_add_raw(&tl, 0x000f, strlen(ci->lang), ci->lang); 266 aim_tlvlist_add_raw(&tl, 0x000f, strlen(ci->lang), ci->lang);
267 aim_tlvlist_add_raw(&tl, 0x000e, strlen(ci->country), ci->country); 267 aim_tlvlist_add_raw(&tl, 0x000e, strlen(ci->country), ci->country);
268 268
269 #ifndef NOSSI
270 /* 269 /*
271 * If set, old-fashioned buddy lists will not work. You will need 270 * If set, old-fashioned buddy lists will not work. You will need
272 * to use SSI. 271 * to use SSI.
273 */ 272 */
274 aim_tlvlist_add_8(&tl, 0x004a, 0x01); 273 aim_tlvlist_add_8(&tl, 0x004a, 0x01);
275 #endif
276 274
277 aim_tlvlist_write(&fr->data, &tl); 275 aim_tlvlist_write(&fr->data, &tl);
278 276
279 aim_tlvlist_free(&tl); 277 aim_tlvlist_free(&tl);
280 278