Changes in root_commands.c [0e788f5:e277e80]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
root_commands.c
r0e788f5 re277e80 281 281 { 282 282 if( ( irc->status & USTATUS_IDENTIFIED ) == 0 ) 283 irc_rootmsg( irc, "Please create an account first " );283 irc_rootmsg( irc, "Please create an account first (see \x02help register\x02)" ); 284 284 else if( storage_save( irc, NULL, TRUE ) == STORAGE_OK ) 285 285 irc_rootmsg( irc, "Configuration saved" ); … … 702 702 if( cmd[3] ) 703 703 { 704 if( !nick_ok( cmd[3] ) )704 if( !nick_ok( irc, cmd[3] ) ) 705 705 { 706 706 irc_rootmsg( irc, "The requested nick `%s' is invalid", cmd[3] ); … … 844 844 irc_rootmsg( irc, "Use /nick to change your own nickname" ); 845 845 } 846 else if( !nick_ok( cmd[2] ) )846 else if( !nick_ok( irc, cmd[2] ) ) 847 847 { 848 848 irc_rootmsg( irc, "Nick `%s' is invalid", cmd[2] );
Note: See TracChangeset
for help on using the changeset viewer.