comparison src/protocols/oscar/admin.c @ 4071:2532f1192da3

[gaim-migrate @ 4283] So I made all them versions be the likes of winaim 5.1.3036. This includes changing the ssi family/module version from 1 to 3. This caused the SNAC flag 0x8000 to pop up in a few places, so I made a change to rxhandlers.c that should take care of this. This should allow you to add @mac.com buddies to your buddy list, as well as get rid of the PleaseUpgrade000 buddies. It should also reduce your risk of cancer by 5-10%. Hopefully this won't break anything. Everything seems to be ok to me. Baaaaah. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Fri, 13 Dec 2002 22:34:14 +0000
parents 07283934dedd
children 0b64f386a7b8
comparison
equal deleted inserted replaced
4070:6efe00ee7de8 4071:2532f1192da3
1 /* 1 /*
2 * Family 0x0007 - Account Administration. 2 * Family 0x0007 - Account Administration.
3 * 3 *
4 * Used for stuff like changing the formating of your screen name, changing your 4 * Used for stuff like changing the formating of your screen name, changing your
5 * email address, requesting an account confirmation email, getting account info, 5 * email address, requesting an account confirmation email, getting account info,
6 * 6 *
7 */ 7 */
8 8
9 #define FAIM_INTERNAL 9 #define FAIM_INTERNAL
10 #include <aim.h> 10 #include <aim.h>
11 11
225 faim_internal int admin_modfirst(aim_session_t *sess, aim_module_t *mod) 225 faim_internal int admin_modfirst(aim_session_t *sess, aim_module_t *mod)
226 { 226 {
227 227
228 mod->family = 0x0007; 228 mod->family = 0x0007;
229 mod->version = 0x0001; 229 mod->version = 0x0001;
230 mod->toolid = AIM_TOOL_NEWWIN; 230 mod->toolid = 0x0010;
231 mod->toolversion = 0x0361; /* XXX this and above aren't right */ 231 mod->toolversion = 0x0629;
232 mod->flags = 0; 232 mod->flags = 0;
233 strncpy(mod->name, "admin", sizeof(mod->name)); 233 strncpy(mod->name, "admin", sizeof(mod->name));
234 mod->snachandler = snachandler; 234 mod->snachandler = snachandler;
235 235
236 return 0; 236 return 0;