diff options
author | C. McEnroe | 2020-03-09 03:08:59 -0400 |
---|---|---|
committer | C. McEnroe | 2020-03-09 03:08:59 -0400 |
commit | 2f53f75892494eb2f2177a21f4cbaf92a6d7ab06 (patch) | |
tree | 293511d1fe3e310ca7796c91aa6b5b25fe51078c /handle.c | |
parent | 7e120f00a19c27e0b98e27a2eacacdfce9bd3ca2 (diff) |
Ignore 422 ERR_NOMOTD
pounce will start sending these because some silly clients don't think they're connected until some MOTD reply...
Diffstat (limited to 'handle.c')
-rw-r--r-- | handle.c | 5 |
1 files changed, 5 insertions, 0 deletions
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 }, |