1
0
mirror of https://github.com/anope/anope.git synced 2026-06-30 00:16:39 +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);
+2 -1
View File
@@ -9,9 +9,10 @@ VERSION_MAJOR="1"
VERSION_MINOR="8"
VERSION_PATCH="4"
VERSION_EXTRA="-svn"
VERSION_BUILD="2950"
VERSION_BUILD="2961"
# $Log$ # Changes since the 1.8.4 Release
#Revision 2961 - Fixed bug with r2952 (%s was used rather than %d)
#Revision 2952 - Added a tonne of alog()s to log all stateful commands
#Revision 2950 - Added support for building with Microsoft Visual Studio 2010 and removed support for Microsoft Visual Studio 98
#Revision 2947 - Fixed a memory leak and use of uninitialized values in unreal_jointhrottle_mode_check. Note we don't even use this function currently.