Changeset 3dc6d86
- Timestamp:
- 2010-06-02T08:47:18Z (14 years ago)
- Branches:
- master
- Children:
- 1fdb0a4, 3759849, f277225
- Parents:
- ba3233c
- Location:
- protocols/oscar
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/oscar/auth.c
rba3233c r3dc6d86 120 120 aim_snacid_t snacid; 121 121 aim_tlvlist_t *tl = NULL; 122 struct im_connection *ic = sess->aux_data; 122 123 123 124 if (!sess || !conn || !sn) 124 125 return -EINVAL; 125 126 126 if ( (sn[0] >= '0') && (sn[0] <= '9'))127 if (isdigit(sn[0]) && set_getbool(&ic->acc->set, "old_icq_auth")) 127 128 return goddamnicq(sess, conn, sn); 128 129 -
protocols/oscar/oscar.c
rba3233c r3dc6d86 374 374 if (isdigit(acc->user[0])) { 375 375 set_add(&acc->set, "ignore_auth_requests", "false", set_eval_bool, acc); 376 set_add(&acc->set, "old_icq_auth", "false", set_eval_bool, acc); 376 377 } 377 378
Note: See TracChangeset
for help on using the changeset viewer.