commit - 33e8c2480649193799d88d003b9257873aaf2b31
commit + 77cff9e47c33d1b1bc22d1fba09607e347e55e8a
blob - 3c4eb189d58b7035d2c7bd7df7c53d47bceddced
blob + 518c9f1d605207a7128ce26b37ae63bab295703b
--- src/ngircd/irc-login.c
+++ src/ngircd/irc-login.c
return DISCONNECTED;
}
} /* IRC_QUIT */
+
+
+GLOBAL bool
+IRC_QUIT_HTTP( CLIENT *Client, REQUEST *Req )
+{
+ Req->argc = 0;
+ return IRC_QUIT(Client, Req);
+} /* IRC_QUIT_HTTP */
/**
* @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)
{