Changeset 238f828 for commands.c
- Timestamp:
- 2005-12-26T14:42:54Z (19 years ago)
- Branches:
- master
- Children:
- e4d6271
- Parents:
- d25f6fc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
commands.c
rd25f6fc r238f828 97 97 case STORAGE_OK: 98 98 irc_usermsg( irc, "Password accepted" ); 99 irc_umode_set( irc, "+R", 1 ); 99 100 break; 100 101 default: … … 122 123 case STORAGE_OK: 123 124 irc->status = USTATUS_IDENTIFIED; 125 irc_umode_set( irc, "+R", 1 ); 124 126 break; 125 127 … … 146 148 case STORAGE_OK: 147 149 irc_setpass( irc, NULL ); 150 irc->status = USTATUS_LOGGED_IN; 151 irc_umode_set( irc, "-R", 1 ); 148 152 irc_usermsg( irc, "Account `%s' removed", irc->nick ); 149 153 return( 0 );
Note: See TracChangeset
for help on using the changeset viewer.