Changeset e374dee for libfaim/admin.c
- Timestamp:
- Oct 10, 2003, 5:12:30 PM (21 years ago)
- Branches:
- master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- fe6f1d3
- Parents:
- f4d0975
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libfaim/admin.c
r862371b re374dee 4 4 * Used for stuff like changing the formating of your screen name, changing your 5 5 * email address, requesting an account confirmation email, getting account info, 6 * 6 * 7 7 */ 8 8 … … 197 197 static int accountconfirm(aim_session_t *sess, aim_module_t *mod, aim_frame_t *rx, aim_modsnac_t *snac, aim_bstream_t *bs) 198 198 { 199 int ret = 0; 199 200 aim_rxcallback_t userfunc; 200 201 fu16_t status; … … 207 208 208 209 if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype))) 209 ret urnuserfunc(sess, rx, status);210 211 return 0;210 ret = userfunc(sess, rx, status); 211 212 return ret; 212 213 } 213 214 … … 228 229 mod->family = 0x0007; 229 230 mod->version = 0x0001; 230 mod->toolid = AIM_TOOL_NEWWIN;231 mod->toolversion = 0x0 361; /* XXX this and above aren't right */231 mod->toolid = 0x0010; 232 mod->toolversion = 0x0629; 232 233 mod->flags = 0; 233 234 strncpy(mod->name, "admin", sizeof(mod->name));
Note: See TracChangeset
for help on using the changeset viewer.