Changeset 70f69ecc


Ignore:
Timestamp:
2010-06-07T15:45:42Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
0a6e5d1
Parents:
c5aefa4
Message:

Restoring auto-identification using server password.

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • irc.c

    rc5aefa4 r70f69ecc  
    644644                        irc->status |= USTATUS_LOGGED_IN;
    645645                       
    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                        
    656646                        irc_send_login( irc );
    657647                       
     
    673663                                      "\x02identify\x02 command to identify yourself.", NULL );
    674664                       
     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                       
    675675                        return 1;
    676676                }
  • irc_commands.c

    rc5aefa4 r70f69ecc  
    5858        {
    5959                /* Remember the password and try to identify after USER/NICK. */
    60                 /*irc_setpass( irc, cmd[1] ); */
     60                irc_setpass( irc, cmd[1] );
    6161                irc_check_login( irc );
    6262        }
Note: See TracChangeset for help on using the changeset viewer.