summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-12-05 23:06:45 -0500
committerJune McEnroe <june@causal.agency>2020-12-05 23:06:45 -0500
commit997c932e83ec27e3dc3e999d9c3390f818c58b77 (patch)
treef9239d78b504ac431b832e6fdf9f5bdb3ee9a71f
parentSplit /exec lines by \r as well as \n (diff)
downloadcatgirl-997c932e83ec27e3dc3e999d9c3390f818c58b77.tar.gz
catgirl-997c932e83ec27e3dc3e999d9c3390f818c58b77.zip
Handle 437 ERR_UNAVAILRESOURCE like ERR_NICKNAMEINUSE
Not totally clear under what conditions 437 is returned, but if it
happens during registration, we should pick a new nick.
-rw-r--r--handle.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/handle.c b/handle.c
index 9c37f34..a8f9ede 100644
--- a/handle.c
+++ b/handle.c
@@ -1302,6 +1302,7 @@ static const struct Handler {
 	{ "422", handleErrorNoMOTD },
 	{ "432", handleErrorErroneousNickname },
 	{ "433", handleErrorNicknameInUse },
+	{ "437", handleErrorNicknameInUse },
 	{ "441", handleErrorUserNotInChannel },
 	{ "443", handleErrorUserOnChannel },
 	{ "478", handleErrorBanListFull },
td>2022-06-05FIRST SHOW IN 2.5 YEARS BABEY!!!June McEnroe 2022-06-03Set line number on File linesJune McEnroe 2022-06-03Stop polling stdin after EOFJune McEnroe 2022-06-02Set TABSIZE=4June McEnroe 2022-06-02Do basic match highlightingJune McEnroe 2022-06-02Clean up parsing a littleJune McEnroe 2022-06-02Don't duplicate path stringJune McEnroe 2022-06-02Use stderr instead of /dev/tty, realloc buffer if lines too longJune McEnroe 2022-06-02Add initial working version of qfJune McEnroe 2022-05-29Set prompt for okshJune McEnroe