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

BUILD : 1.7.17 (1211) BUGS : 650 NOTES : Fixed ModuleNoticeLang which was formatting the string twice

git-svn-id: svn://svn.anope.org/anope/trunk@1211 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@930 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b
2006-12-27 15:44:30 +00:00
parent 4e409e31cb
commit c0c0a6441e
3 changed files with 11 additions and 6 deletions
+5 -4
View File
@@ -14,10 +14,11 @@ Anope Version S V N
12/09 F Langfiles had CHANAKILL instead of CHANKILL in syntax lines. [#640]
12/10 F NickServ ALIST not accepting Founder as level param. [#629]
12/10 F EVENT_TOPIC_UPDATES was not always sent when it should be. [#641]
12/24 F anoperc sends SIGTERM for restart and uses command line params [#645]
12/24 F Nickname changes were not recognised on TS6-based IRCd's [#646]
12/24 F Small typo in CHAN_REGISTER_NONE_CHANNEL [#647]
12/24 F Display error messages when RDB functions fail [ #00]
12/24 F anoperc sends SIGTERM for restart and uses command line params. [#645]
12/24 F Nickname changes were not recognised on TS6-based IRCd's. [#646]
12/24 F Small typo in CHAN_REGISTER_NONE_CHANNEL. [#647]
12/24 F Display error messages when RDB functions fail. [ #00]
12/27 F ModuleNoticeLang was printf'ing twice. [#650]
Anope Version 1.7.17
--------------------
+1 -1
View File
@@ -2627,7 +2627,7 @@ void moduleNoticeLang(char *source, User * u, int number, ...)
if (*s)
*s++ = '\0';
strscpy(outbuf, t, sizeof(outbuf));
notice(source, u->nick, outbuf);
notice(source, u->nick, "%s", outbuf);
}
free(buf);
} else {
+5 -1
View File
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="17"
VERSION_EXTRA="-svn"
VERSION_BUILD="1210"
VERSION_BUILD="1211"
# $Log$
#
# BUILD : 1.7.17 (1211)
# BUGS : 650
# NOTES : Fixed ModuleNoticeLang which was formatting the string twice
#
# BUILD : 1.7.17 (1210)
# BUGS : 645 646 647
# NOTES : Fixed anoperc restart, nickchanges on TS6, typo in CHAN_REGISTER_NONE_CHANNEL; added error messages when RDB functions fail (thx heinz)