comparison src/protocols/oscar/oscar.c @ 3064:f0aaea918717

[gaim-migrate @ 3078] Poor, poor msn_embarrassed.xpm. Thanks for rescuing him, Vinay Sahni. Also, truncating oscar passwords to 8 characters. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Sat, 16 Mar 2002 22:18:38 +0000
parents 22c84cbcd5a6
children 1b64206cfbdc
comparison
equal deleted inserted replaced
3063:22c84cbcd5a6 3064:f0aaea918717
480 480
481 if (isdigit(*user->username)) { 481 if (isdigit(*user->username)) {
482 odata->icq = TRUE; 482 odata->icq = TRUE;
483 /* this is odd but it's necessary for a proper do_import and do_export */ 483 /* this is odd but it's necessary for a proper do_import and do_export */
484 gc->protocol = PROTO_ICQ; 484 gc->protocol = PROTO_ICQ;
485 gc->password[9] = 0; 485 gc->password[8] = 0;
486 } else { 486 } else {
487 gc->protocol = PROTO_TOC; 487 gc->protocol = PROTO_TOC;
488 gc->flags |= OPT_CONN_HTML; 488 gc->flags |= OPT_CONN_HTML;
489 } 489 }
490 490