1
0
mirror of https://github.com/anope/anope.git synced 2026-06-30 00:16:39 +02:00

BUILD : 1.7.19 (1304) BUGS : 782 NOTES : Fixed an undeclared identifier in the new code for cleaning up the modules dir on win32

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


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1022 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b
2007-09-09 12:03:57 +00:00
parent 5f5ac9f0d7
commit 01ddc377e7
3 changed files with 7 additions and 2 deletions
+1
View File
@@ -40,6 +40,7 @@ Anope Version S V N
09/01 F Added a note in WIN32.txt about pre-compiled installers [# 00]
09/02 F Created MySQL indexes to decrease load on the database. [# 00]
09/08 F User being able to set modes on empty channels without permission.[#703]
09/09 F Undeclared identifiers in module cleaning code on windows. [#782]
Provided by Trystan <trystan@nomadirc.net> - 2007
08/29 F Module runtime directory not always properly cleaned up. [#768]
+1 -1
View File
@@ -2840,7 +2840,7 @@ void ModuleRunTimeDirCleanUp(void)
alog("debug: Unable to set Current working directory");
}
}
snprintf(szDir, sizeof(szDir), "%s\\%s\\*", buffer, dirname);
snprintf(szDir, sizeof(szDir), "%s\\%s\\*", buffer, dirbuf);
hList = FindFirstFile(szDir, &FileData);
if (hList != INVALID_HANDLE_VALUE) {
+5 -1
View File
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="19"
VERSION_EXTRA="-svn"
VERSION_BUILD="1303"
VERSION_BUILD="1304"
# $Log$
#
# BUILD : 1.7.19 (1304)
# BUGS : 782
# NOTES : Fixed an undeclared identifier in the new code for cleaning up the modules dir on win32
#
# BUILD : 1.7.19 (1303)
# BUGS : 703
# NOTES : Fixed user being able to change channel modes on empty channels without permission (eg SECUREOPS)