- Timestamp:
- 2006-06-15T12:37:05Z (18 years ago)
- Branches:
- master
- Children:
- 07e46c9, 5898ef8, b72caac
- Parents:
- 79e826a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
irc.c
r79e826a r3af70b0 701 701 if( irc->user && irc->nick ) 702 702 { 703 if( global.conf->authmode == AUTHMODE_CLOSED && ! irc->status & USTATUS_AUTHORIZED)703 if( global.conf->authmode == AUTHMODE_CLOSED && !( irc->status & USTATUS_AUTHORIZED ) ) 704 704 { 705 705 irc_reply( irc, 464, ":This server is password-protected." ); … … 1181 1181 int rv = 0; 1182 1182 1183 if( ! irc->status & USTATUS_LOGGED_IN)1183 if( !( irc->status & USTATUS_LOGGED_IN ) ) 1184 1184 { 1185 1185 if( gettime() > ( irc->last_pong + IRC_LOGIN_TIMEOUT ) )
Note: See TracChangeset
for help on using the changeset viewer.