From 461bc4c87ed083940c4f9b4db4c39ccdf05c351e Mon Sep 17 00:00:00 2001 From: phil-lavin Date: Sat, 15 May 2010 16:55:58 +0000 Subject: [PATCH] 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 --- src/core/cs_set.c | 2 +- version.log | 3 ++- 2 files changed, 3 insertions(+), 2 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); diff --git a/version.log b/version.log index 5041a173a..acabef68d 100644 --- a/version.log +++ b/version.log @@ -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.