From: Alexander Barton Date: Tue, 20 Jan 2015 21:49:23 +0000 (+0100) Subject: Auth PING: The numeric ID is a "long", use atol() X-Git-Tag: rel-22.1~9 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=commitdiff_plain;h=dbfe1beca83a80c7fc9e25470a75bca78f64d634;ds=sidebyside Auth PING: The numeric ID is a "long", use atol() --- diff --git a/src/ngircd/irc-login.c b/src/ngircd/irc-login.c index 7ad1cb78..fbb50edb 100644 --- a/src/ngircd/irc-login.c +++ b/src/ngircd/irc-login.c @@ -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);