repo: ngircd
action: commit
revision: 
path_from: 
revision_from: f1267ca375b0b754bb466e6c95713566072d3345:
path_to: 
revision_to: 
git.thebackupbox.net
ngircd
git clone git://git.thebackupbox.net/ngircd
commit f1267ca375b0b754bb466e6c95713566072d3345
Author: Alexander Barton 
Date:   Sun Oct 24 13:41:51 2010 +0200

    Don't use PARAMS() macro for function implementations

    The PARAMS() macro is only needed for function prototypes;
    don't use it for the actual implementations.

diff --git a/src/ngircd/irc-info.c b/src/ngircd/irc-info.c
index 905799eb52fc21886bec08a44e4c88553d2ef7b0..
index ..8f86e805315f4294dc4a6583d8a2150fd51691aa 100644
--- a/src/ngircd/irc-info.c
+++ b/src/ngircd/irc-info.c
@@ -1337,7 +1337,7 @@ IRC_Send_NAMES( CLIENT *Client, CHANNEL *Chan )
  * See  for details.
  */
 GLOBAL bool
-IRC_Send_ISUPPORT PARAMS((CLIENT * Client))
+IRC_Send_ISUPPORT(CLIENT * Client)
 {
 	if (!IRC_WriteStrClient(Client, RPL_ISUPPORT1_MSG, Client_ID(Client),
 				Conf_MaxJoins))

-----END OF PAGE-----