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

BUILD : 1.7.21 (1386) BUGS : 867 NOTES : Removed extra loop when parsing defcon modes.

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


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1101 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
drstein drstein@31f1291d-b8d6-0310-a050-a5561fc1590b
2008-02-12 15:30:38 +00:00
parent 46c09b5da9
commit 62de724353
3 changed files with 10 additions and 8 deletions
+1
View File
@@ -37,6 +37,7 @@ Anope Version S V N
02/11 F Fixed memory leak in cs_akick(). [#870]
02/11 F Added missed debug message when HostServ is disabled. [#863]
02/12 F rdb_close() where rdb_open() is used in rdb_dbase() functions. [#862]
02/12 F Removed extra loop when parsing defcon modes. [#867]
Provided by Trystan <trystan@nomadirc.net> - 2008
02/11 F Last part of memory leak in cs_akick() [#870]
+4 -7
View File
@@ -483,13 +483,10 @@ int init_secondary(int ac, char **av)
/* Parse the defcon mode string if needed */
if (DefConLevel) {
int defconCount;
for (defconCount = 1; defconCount <= 5; defconCount++) {
if (!defconParseModeString(DefConChanModes)) {
fprintf(stderr,
"services.conf: The given DefConChanModes mode string was incorrect (see log for exact errors)\n");
return -1;
}
if (!defconParseModeString(DefConChanModes)) {
fprintf(stderr,
"services.conf: The given DefConChanModes mode string was incorrect (see log for exact errors)\n");
return -1;
}
}
#ifndef _WIN32
+5 -1
View File
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="21"
VERSION_EXTRA="-svn"
VERSION_BUILD="1385"
VERSION_BUILD="1386"
# $Log$
#
# BUILD : 1.7.21 (1386)
# BUGS : 867
# NOTES : Removed extra loop when parsing defcon modes.
#
# BUILD : 1.7.21 (1385)
# BUGS : 862
# NOTES : rdb_close() where rdb_open() is used in rdb_dbase() functions.