Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/oscar/oscar.c

    r545d7c0 r68198e9  
    373373        set_t *s;
    374374       
     375        s = set_add( &acc->set, "server", AIM_DEFAULT_LOGIN_SERVER, set_eval_account, acc );
     376        s->flags |= ACC_SET_NOSAVE | ACC_SET_OFFLINE_ONLY;
     377       
    375378        if (isdigit(acc->user[0])) {
    376                 set_add(&acc->set, "ignore_auth_requests", "false", set_eval_bool, acc);
    377         }
    378        
    379         s = set_add(&acc->set, "server", AIM_DEFAULT_LOGIN_SERVER, set_eval_account, acc);
    380         s->flags |= ACC_SET_NOSAVE | ACC_SET_OFFLINE_ONLY;
    381        
    382         if(isdigit(acc->user[0])) {
    383                 s = set_add(&acc->set, "web_aware", "false", set_eval_bool, acc);
     379                s = set_add( &acc->set, "web_aware", "false", set_eval_bool, acc );
    384380                s->flags |= ACC_SET_OFFLINE_ONLY;
    385381        }
     
    12161212 */
    12171213static void gaim_icq_authask(struct im_connection *ic, guint32 uin, char *msg) {
    1218         struct icq_auth *data;
     1214        struct icq_auth *data = g_new(struct icq_auth, 1);
    12191215        char *reason = NULL;
    12201216        char *dialog_msg;
    1221 
    1222         if (set_getbool(&ic->acc->set, "ignore_auth_requests"))
    1223                 return;
    1224        
    1225         data = g_new(struct icq_auth, 1);
    1226 
     1217       
    12271218        if (strlen(msg) > 6)
    12281219                reason = msg + 6;
Note: See TracChangeset for help on using the changeset viewer.