summaryrefslogtreecommitdiff
path: root/src/actions.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/actions.c')
-rw-r--r--src/actions.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/actions.c b/src/actions.c
index c9ca020a0..50ff90981 100644
--- a/src/actions.c
+++ b/src/actions.c
@@ -168,14 +168,14 @@ void common_unban(ChannelInfo * ci, char *nick)
for the function. but won't prevent thus from clearing out
the bans against an IP address since the first would fail and
the second would match - TSL
- */
+ */
if (!matchfound) {
- if (match_userip(bans[i], u, host)) {
- anope_cmd_mode(whosends(ci), ci->name, "-b %s",
- bans[i]);
- av[2] = bans[i];
- do_cmode(whosends(ci), 3, av);
- }
+ if (match_userip(bans[i], u, host)) {
+ anope_cmd_mode(whosends(ci), ci->name, "-b %s",
+ bans[i]);
+ av[2] = bans[i];
+ do_cmode(whosends(ci), 3, av);
+ }
}
}
matchfound = 0;