commit c41f18e3f90512afcf38f42695c26708a1f34772 from: Alexander Barton date: Tue Jan 20 21:50:13 2015 UTC Auth PING: Fix our information text for manual sending of "PONG" Up to now, ngIRCd doesn't send a valid IRC command at all, oops! commit - dbfe1beca83a80c7fc9e25470a75bca78f64d634 commit + c41f18e3f90512afcf38f42695c26708a1f34772 blob - fbb50edbd33617d4f70deda382f719c1ab744e08 blob + 98ac0e7f5e07ead740eed5297eb8b45802b59b8d --- src/ngircd/irc-login.c +++ src/ngircd/irc-login.c @@ -838,8 +838,8 @@ IRC_PONG(CLIENT *Client, REQUEST *Req) Login_User(Client); } else if (!IRC_WriteStrClient(Client, - "To connect, type /QUOTE PONG %ld", - auth_ping)) + "NOTICE %s :To connect, type /QUOTE PONG %ld", + Client_ID(Client), auth_ping)) return DISCONNECTED; } #endif