From 6435dfdda5c50b0244260d881210538c81d43fa0 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Mon, 8 Mar 2021 10:47:18 -0500 Subject: Disable nick and channel colors with hash bound 0 --- chat.c | 1 - 1 file changed, 1 deletion(-) (limited to 'chat.c') diff --git a/chat.c b/chat.c index 60ec7d2..7335520 100644 --- a/chat.c +++ b/chat.c @@ -123,7 +123,6 @@ uint32_t hashBound = 75; static void parseHash(char *str) { hashInit = strtoul(str, &str, 0); if (*str) hashBound = strtoul(&str[1], NULL, 0); - if (hashBound < 2) errx(EX_USAGE, "hash bound must be >= 2"); } #ifdef __OpenBSD__ -- cgit 1.4.1