From 2f53f75892494eb2f2177a21f4cbaf92a6d7ab06 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Mon, 9 Mar 2020 03:08:59 -0400 Subject: Ignore 422 ERR_NOMOTD pounce will start sending these because some silly clients don't think they're connected until some MOTD reply... --- handle.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'handle.c') diff --git a/handle.c b/handle.c index d0236fd..4b15517 100644 --- a/handle.c +++ b/handle.c @@ -272,6 +272,10 @@ static void handleReplyMOTD(struct Message *msg) { } } +static void handleErrorNoMOTD(struct Message *msg) { + (void)msg; +} + static void handleJoin(struct Message *msg) { require(msg, true, 1); uint id = idFor(msg->params[0]); @@ -984,6 +988,7 @@ static const struct Handler { { "372", handleReplyMOTD }, { "378", handleReplyWhoisGeneric }, { "379", handleReplyWhoisGeneric }, + { "422", handleErrorNoMOTD }, { "432", handleErrorErroneousNickname }, { "433", handleErrorNicknameInUse }, { "441", handleErrorUserNotInChannel }, -- cgit 1.4.1