Auth PING: The numeric ID is a "long", use atol()

This commit is contained in:
Alexander Barton 2015-01-20 22:49:23 +01:00
parent 6bdae55177
commit dbfe1beca8
1 changed files with 1 additions and 1 deletions

View File

@ -832,7 +832,7 @@ IRC_PONG(CLIENT *Client, REQUEST *Req)
if (auth_ping) {
LogDebug("AUTH PONG: waiting for token \"%ld\", got \"%s\" ...",
auth_ping, Req->argv[0]);
if (auth_ping == atoi(Req->argv[0])) {
if (auth_ping == atol(Req->argv[0])) {
Conn_SetAuthPing(conn, 0);
if (Client_Type(Client) == CLIENT_WAITAUTHPING)
Login_User(Client);