From 49b837e4c54b5c1f50d3b9fb8484a7cd1fe6f40a Mon Sep 17 00:00:00 2001 From: Russell King Date: Sun, 5 Jun 2016 14:43:34 +0100 Subject: Fix CERTFP bug CERTFP had the client and source reversed, which prevented it from accepting CERTFP messages from neighbours. Fix this. --- modules/m_certfp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/m_certfp.c b/modules/m_certfp.c index a63ae4b..e52f9f5 100644 --- a/modules/m_certfp.c +++ b/modules/m_certfp.c @@ -49,7 +49,7 @@ * - parv[1] = certificate fingerprint */ static int -ms_certfp(struct Client *source_p, struct Client *client_p, +ms_certfp(struct Client *client_p, struct Client *source_p, int parc, char *parv[]) { if (!IsClient(source_p)) -- cgit