Changeset e374dee for libfaim/admin.c


Ignore:
Timestamp:
Oct 10, 2003, 5:12:30 PM (21 years ago)
Author:
James M. Kretchmar <kretch@mit.edu>
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
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libfaim/admin.c

    r862371b re374dee  
    44 * Used for stuff like changing the formating of your screen name, changing your
    55 * email address, requesting an account confirmation email, getting account info,
    6  * 
     6 *
    77 */
    88
     
    197197static int accountconfirm(aim_session_t *sess, aim_module_t *mod, aim_frame_t *rx, aim_modsnac_t *snac, aim_bstream_t *bs)
    198198{
     199        int ret = 0;
    199200        aim_rxcallback_t userfunc;
    200201        fu16_t status;
     
    207208
    208209        if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype)))
    209                 return userfunc(sess, rx, status);
    210 
    211         return 0;
     210                ret = userfunc(sess, rx, status);
     211
     212        return ret;
    212213}
    213214
     
    228229        mod->family = 0x0007;
    229230        mod->version = 0x0001;
    230         mod->toolid = AIM_TOOL_NEWWIN;
    231         mod->toolversion = 0x0361; /* XXX this and above aren't right */
     231        mod->toolid = 0x0010;
     232        mod->toolversion = 0x0629;
    232233        mod->flags = 0;
    233234        strncpy(mod->name, "admin", sizeof(mod->name));
Note: See TracChangeset for help on using the changeset viewer.