Changes in protocols/oscar/oscar.c [545d7c0:68198e9]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/oscar/oscar.c
r545d7c0 r68198e9 373 373 set_t *s; 374 374 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 375 378 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 ); 384 380 s->flags |= ACC_SET_OFFLINE_ONLY; 385 381 } … … 1216 1212 */ 1217 1213 static 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); 1219 1215 char *reason = NULL; 1220 1216 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 1227 1218 if (strlen(msg) > 6) 1228 1219 reason = msg + 6;
Note: See TracChangeset
for help on using the changeset viewer.