1
0
mirror of https://github.com/anope/anope.git synced 2026-07-09 01:23:13 +02:00

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
This commit is contained in:
phil-lavin
2010-05-15 16:55:58 +00:00
parent d049bf0d8f
commit 461bc4c87e
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -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);