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:
parent
dbfe1beca8
commit
c41f18e3f9
|
@ -838,8 +838,8 @@ IRC_PONG(CLIENT *Client, REQUEST *Req)
|
||||||
Login_User(Client);
|
Login_User(Client);
|
||||||
} else
|
} else
|
||||||
if (!IRC_WriteStrClient(Client,
|
if (!IRC_WriteStrClient(Client,
|
||||||
"To connect, type /QUOTE PONG %ld",
|
"NOTICE %s :To connect, type /QUOTE PONG %ld",
|
||||||
auth_ping))
|
Client_ID(Client), auth_ping))
|
||||||
return DISCONNECTED;
|
return DISCONNECTED;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue