# HG changeset patch # User Luke Schierer # Date 1049457167 0 # Node ID ed2a6196ccab00485e3fad4fb41f4f2642e0062b # Parent 2c191ee5cd7a2a6e6d864989a7a3cf21c0065a04 [gaim-migrate @ 5330] kelnos (bjt23) writes: " irc plugin now silently drops irc error 422, which is just the server saying there is no MOTD. who cares, really? the dialog that pops up is annoying..." he also added a break; for error 402, since it is NOT the same as 422 ;-) committer: Tailor Script diff -r 2c191ee5cd7a -r ed2a6196ccab src/protocols/irc/irc.c --- a/src/protocols/irc/irc.c Fri Apr 04 03:51:04 2003 +0000 +++ b/src/protocols/irc/irc.c Fri Apr 04 11:52:47 2003 +0000 @@ -1090,6 +1090,9 @@ break; case 402: /* ERR_NOSUCHSERVER */ do_error_dialog(_("No such server"), _("IRC Error"), GAIM_ERROR); + break; + case 422: /* ERR_NOMOTD */ + break; /* drop it - bringing up dialog for NOMOTD is annoying */ case 431: /* ERR_NONICKNAMEGIVEN */ do_error_dialog(_("No nickname given"), _("IRC Error"), GAIM_ERROR); break;