summaryrefslogtreecommitdiff
path: root/src/conf.c
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2014-03-23 19:49:55 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2014-03-23 19:49:55 +0000
commit54a00282d9f08314749db5bee8635abc40262c04 (patch)
treee098f24515f2fb56ae64b0b07aab1cbce6b3b623 /src/conf.c
parent3ae8f7036933cf9d8905ee19f5aee6473ac9adb7 (diff)
- Cleaned up find_chasing(). Removed useless third 'chasing' argument.
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@3193 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'src/conf.c')
-rw-r--r--src/conf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf.c b/src/conf.c
index 30f2113..60ac180 100644
--- a/src/conf.c
+++ b/src/conf.c
@@ -2031,7 +2031,7 @@ find_user_host(struct Client *source_p, char *user_host_or_nick,
/* Try to find user@host mask from nick */
/* Okay to use source_p as the first param, because source_p == client_p */
if ((target_p =
- find_chasing(source_p, user_host_or_nick, NULL)) == NULL)
+ find_chasing(source_p, user_host_or_nick)) == NULL)
return 0;
if (IsExemptKline(target_p))