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 },