commit 77cff9e47c33d1b1bc22d1fba09607e347e55e8a from: Alexander Barton date: Wed Mar 16 22:56:27 2011 UTC Move IRC_QUIT_HTTP() below IRC_QUIT() commit - 33e8c2480649193799d88d003b9257873aaf2b31 commit + 77cff9e47c33d1b1bc22d1fba09607e347e55e8a blob - 3c4eb189d58b7035d2c7bd7df7c53d47bceddced blob + 518c9f1d605207a7128ce26b37ae63bab295703b --- src/ngircd/irc-login.c +++ src/ngircd/irc-login.c @@ -681,6 +681,14 @@ IRC_QUIT( CLIENT *Client, REQUEST *Req ) return DISCONNECTED; } } /* IRC_QUIT */ + + +GLOBAL bool +IRC_QUIT_HTTP( CLIENT *Client, REQUEST *Req ) +{ + Req->argc = 0; + return IRC_QUIT(Client, Req); +} /* IRC_QUIT_HTTP */ /** @@ -692,14 +700,6 @@ IRC_QUIT( CLIENT *Client, REQUEST *Req ) * @param Req Request structure with prefix and all parameters. * @returns CONNECTED or DISCONNECTED. */ -GLOBAL bool -IRC_QUIT_HTTP( CLIENT *Client, REQUEST *Req ) -{ - Req->argc = 0; - return IRC_QUIT(Client, Req); -} - - GLOBAL bool IRC_PING(CLIENT *Client, REQUEST *Req) {