diff options
| author | Wilmer van der Gaast <wilmer@gaast.net> | 2006-06-15 14:37:05 +0200 | 
|---|---|---|
| committer | Wilmer van der Gaast <wilmer@gaast.net> | 2006-06-15 14:37:05 +0200 | 
| commit | 3af70b06b2f0fb0fb41a041f6d86e3711b9eea3f (patch) | |
| tree | 851e0c661e14d3dae49cd060a99dc05e37e12c06 /root_commands.c | |
| parent | 79e826a028f4b4c62c0c16e20af1fb13a9636324 (diff) | |
!x&y == (!x)&y, not !(x&y).
Diffstat (limited to 'root_commands.c')
| -rw-r--r-- | root_commands.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/root_commands.c b/root_commands.c index d8611347..3d3584b3 100644 --- a/root_commands.c +++ b/root_commands.c @@ -200,7 +200,7 @@ static void cmd_account( irc_t *irc, char **cmd )  {  	account_t *a; -	if( global.conf->authmode == AUTHMODE_REGISTERED && ! irc->status & USTATUS_IDENTIFIED ) +	if( global.conf->authmode == AUTHMODE_REGISTERED && !( irc->status & USTATUS_IDENTIFIED ) )  	{  		irc_usermsg( irc, "This server only accepts registered users" );  		return; | 
