diff options
author | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-12-17 19:22:51 +0000 |
---|---|---|
committer | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-12-17 19:22:51 +0000 |
commit | ea3b19a22c58784e1fbe8ec3a9bb2dd644f149e7 (patch) | |
tree | c918dbfee7ec74f60964c7ce829321f1f0879d0e /src | |
parent | b4b2a7bd1b80c4b8e31cfb8adb7e33a08051260d (diff) |
Fix an incorrect variable name.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1831 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r-- | src/chanserv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chanserv.c b/src/chanserv.c index 33a2fed16..9a65471e9 100644 --- a/src/chanserv.c +++ b/src/chanserv.c @@ -1211,7 +1211,7 @@ int check_kick(User * user, const char *chan, time_t chants) /* * If channel was forbidden, etc, set it +si to prevent rejoin */ - if (send_modes) + if (set_modes) { ircdproto->SendMode(findbot(s_ChanServ), chan, "+ntsi"); } |