From 9baf91887f5b9fdc90f647d3c255bd490f0d4b79 Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Tue, 1 Apr 2008 16:14:47 -0500 Subject: [PATCH] fix highest_fd nonsense --- modules/m_set.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/m_set.c b/modules/m_set.c index dba5687..d79b2bb 100644 --- a/modules/m_set.c +++ b/modules/m_set.c @@ -227,8 +227,8 @@ quote_max(struct Client *source_p, int newval) if(newval < 32) { - sendto_one_notice(source_p, ":You cannot set MAXCLIENTS to < 32 (%d:%d)", - GlobalSetOptions.maxclients, highest_fd); + sendto_one_notice(source_p, ":You cannot set MAXCLIENTS to < 32 (%d)", + GlobalSetOptions.maxclients); return; }