aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/talkproc.c
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2025-04-04 00:02:21 +0200
committerMarkus Uhlin <markus@nifty-networks.net>2025-04-04 00:02:21 +0200
commit9526005135d01137bac55c440b506230dcc4058c (patch)
tree3ad71e0faf2c7b7dc0e1bf42c9e353c89edcea0c /FICS/talkproc.c
parentffba98f62c947da6fa01120170a13ec4337aa1a5 (diff)
tell: fixed constant expression result
Diffstat (limited to 'FICS/talkproc.c')
-rw-r--r--FICS/talkproc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/FICS/talkproc.c b/FICS/talkproc.c
index 3d16be1..601f43b 100644
--- a/FICS/talkproc.c
+++ b/FICS/talkproc.c
@@ -34,6 +34,8 @@
Markus Uhlin 24/04/14 Refactored and reformatted ALL
functions.
Markus Uhlin 25/01/18 Fixed -Wshadow
+ Markus Uhlin 25/04/04 tell: fixed constant expression
+ result
*/
#include "stdinclude.h"
@@ -296,8 +298,8 @@ tell(int p, int p1, char *msg, int why, int ch)
}
if (player_censored(p1, p) && parray[p].adminLevel == 0) {
- if (why != TELL_KIBITZ ||
- why != TELL_WHISPER ||
+ if (why != TELL_KIBITZ &&
+ why != TELL_WHISPER &&
why != TELL_CHANNEL) {
pprintf(p, "Player \"%s\" is censoring you.\n",
parray[p1].name);