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!
This commit is contained in:
Alexander Barton 2015-01-20 22:50:13 +01:00
parent dbfe1beca8
commit c41f18e3f9
1 changed files with 2 additions and 2 deletions

View File

@ -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