From: Alexander Barton Date: Mon, 29 Oct 2012 10:44:45 +0000 (+0100) Subject: Fix warning message introduced when cleaning up IRC_SERVER() X-Git-Tag: rel-20-rc1~24 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=30b32e84fe352f7c39ceca1a9c6df60ca50e83ab;hp=fb924933765238808feb05fb7178402058026897;p=ngircd.git 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 "~" --- diff --git a/src/ngircd/irc-server.c b/src/ngircd/irc-server.c index 02e3ae82..a587c52f 100644 --- a/src/ngircd/irc-server.c +++ b/src/ngircd/irc-server.c @@ -139,7 +139,7 @@ IRC_SERVER( CLIENT *Client, REQUEST *Req ) if (Client_Type(Client) == CLIENT_GOTPASS) { /* We got a "simple" PASS command, so the peer is * 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, "Switching connection %d (\"%s\") to RFC 1459 compatibility mode.", Client_Conn(Client), Client_ID(Client));