diff options
author | June McEnroe <june@causal.agency> | 2021-03-08 10:47:18 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-03-08 10:47:18 -0500 |
commit | 6435dfdda5c50b0244260d881210538c81d43fa0 (patch) | |
tree | e86f4c0a2c54a1a11a4f7bd78f1a294e6cb95a25 /chat.c | |
parent | Add bindings for C-Left and C-Right (diff) | |
download | catgirl-6435dfdda5c50b0244260d881210538c81d43fa0.tar.gz catgirl-6435dfdda5c50b0244260d881210538c81d43fa0.zip |
Disable nick and channel colors with hash bound 0
Diffstat (limited to 'chat.c')
-rw-r--r-- | chat.c | 1 |
1 files changed, 0 insertions, 1 deletions
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__ |