Changeset 70f69ecc
- Timestamp:
- 2010-06-07T15:45:42Z (14 years ago)
- Branches:
- master
- Children:
- 0a6e5d1
- Parents:
- c5aefa4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
irc.c
rc5aefa4 r70f69ecc 644 644 irc->status |= USTATUS_LOGGED_IN; 645 645 646 /* This is for bug #209 (use PASS to identify to NickServ). */647 if( irc->password != NULL )648 {649 char *send_cmd[] = { "identify", g_strdup( irc->password ), NULL };650 651 /*irc_setpass( irc, NULL );*/652 /*root_command( irc, send_cmd );*/653 g_free( send_cmd[1] );654 }655 656 646 irc_send_login( irc ); 657 647 … … 673 663 "\x02identify\x02 command to identify yourself.", NULL ); 674 664 665 /* This is for bug #209 (use PASS to identify to NickServ). */ 666 if( irc->password != NULL ) 667 { 668 char *send_cmd[] = { "identify", g_strdup( irc->password ), NULL }; 669 670 irc_setpass( irc, NULL ); 671 root_command( irc, send_cmd ); 672 g_free( send_cmd[1] ); 673 } 674 675 675 return 1; 676 676 } -
irc_commands.c
rc5aefa4 r70f69ecc 58 58 { 59 59 /* Remember the password and try to identify after USER/NICK. */ 60 /*irc_setpass( irc, cmd[1] ); */60 irc_setpass( irc, cmd[1] ); 61 61 irc_check_login( irc ); 62 62 }
Note: See TracChangeset
for help on using the changeset viewer.