Fix warning message introduced when cleaning up IRC_SERVER()
This reverts a not intentional code change and fixes the following compiler warning message (tested with gcc 4.4.5): irc-server.c: In function "IRC_SERVER": irc-server.c:142: warning: suggest parentheses around operand of "!" or change "&" to "&&" or "!" to "~"
This commit is contained in:
parent
fb92493376
commit
30b32e84fe
|
@ -139,7 +139,7 @@ IRC_SERVER( CLIENT *Client, REQUEST *Req )
|
||||||
if (Client_Type(Client) == CLIENT_GOTPASS) {
|
if (Client_Type(Client) == CLIENT_GOTPASS) {
|
||||||
/* We got a "simple" PASS command, so the peer is
|
/* We got a "simple" PASS command, so the peer is
|
||||||
* using the protocol as defined in RFC 1459. */
|
* using the protocol as defined in RFC 1459. */
|
||||||
if (!Conn_Options(Client_Conn(Client)) & CONN_RFC1459)
|
if (! (Conn_Options(Client_Conn(Client)) & CONN_RFC1459))
|
||||||
Log(LOG_INFO,
|
Log(LOG_INFO,
|
||||||
"Switching connection %d (\"%s\") to RFC 1459 compatibility mode.",
|
"Switching connection %d (\"%s\") to RFC 1459 compatibility mode.",
|
||||||
Client_Conn(Client), Client_ID(Client));
|
Client_Conn(Client), Client_ID(Client));
|
||||||
|
|
Loading…
Reference in New Issue