From 1b09d1152764a9daaacfb7931716f0f3a3be6b4e Mon Sep 17 00:00:00 2001 From: Jilles Tjoelker Date: Sun, 25 Jan 2009 16:26:17 +0100 Subject: [PATCH] Get rid of local variable shadowing. --- modules/m_testline.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/m_testline.c b/modules/m_testline.c index ee1cca6..698b080 100644 --- a/modules/m_testline.c +++ b/modules/m_testline.c @@ -178,11 +178,11 @@ mo_testline(struct Client *client_p, struct Client *source_p, int parc, const ch if(aconf->status & CONF_KILL) { - char *user, *host, *reason, *operreason; + char *puser, *phost, *reason, *operreason; char reasonbuf[BUFSIZE]; - get_printable_kline(source_p, aconf, &host, &reason, &user, &operreason); + get_printable_kline(source_p, aconf, &phost, &reason, &puser, &operreason); rb_snprintf(buf, sizeof(buf), "%s@%s", - user, host); + puser, phost); rb_snprintf(reasonbuf, sizeof(reasonbuf), "%s%s%s", reason, operreason ? "|" : "", operreason ? operreason : ""); sendto_one(source_p, form_str(RPL_TESTLINE),