summaryrefslogtreecommitdiff
path: root/src/core/cs_set.c
diff options
context:
space:
mode:
authorphil-lavin <phil-lavin@5417fbe8-f217-4b02-8779-1006273d7864>2010-05-15 16:55:58 +0000
committerphil-lavin <phil-lavin@5417fbe8-f217-4b02-8779-1006273d7864>2010-05-15 16:55:58 +0000
commit461bc4c87ed083940c4f9b4db4c39ccdf05c351e (patch)
treec48af8326054a9d0da75f5a8df953b8fe4f5895e /src/core/cs_set.c
parentd049bf0d8f0f0e219a22e3dd1d2ad72fd85f1a08 (diff)
Fixed bug with r2952 (%s was used rather than %d)
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/stable@2962 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/core/cs_set.c')
-rw-r--r--src/core/cs_set.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/cs_set.c b/src/core/cs_set.c
index 01297eff4..93209782b 100644
--- a/src/core/cs_set.c
+++ b/src/core/cs_set.c
@@ -591,7 +591,7 @@ int do_set_bantype(User * u, ChannelInfo * ci, char *param)
notice_lang(s_ChanServ, u, CHAN_SET_BANTYPE_INVALID, param);
} else {
ci->bantype = bantype;
- alog("%s: %s!%s@%s set ban type for %s to: %s",
+ alog("%s: %s!%s@%s set ban type for %s to: %d",
s_ChanServ, u->nick, u->username, u->host, ci->name, ci->bantype);
notice_lang(s_ChanServ, u, CHAN_SET_BANTYPE_CHANGED, ci->name,
ci->bantype);