diff options
| author | Alexander Barton <alex@barton.de> | 2015-01-20 22:50:13 +0100 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2015-01-20 22:50:13 +0100 |
| commit | c41f18e3f90512afcf38f42695c26708a1f34772 (patch) | |
| tree | ef9520aea5e74b02164bbd41b1cf8fa3302b633f /src | |
| parent | dbfe1beca83a80c7fc9e25470a75bca78f64d634 (diff) | |
| download | ngircd-c41f18e3f90512afcf38f42695c26708a1f34772.tar.gz ngircd-c41f18e3f90512afcf38f42695c26708a1f34772.zip | |
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!
Diffstat (limited to 'src')
| -rw-r--r-- | src/ngircd/irc-login.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ngircd/irc-login.c b/src/ngircd/irc-login.c index fbb50edb..98ac0e7f 100644 --- a/src/ngircd/irc-login.c +++ b/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 |