summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes1
-rw-r--r--src/modules.c2
-rw-r--r--version.log6
3 files changed, 7 insertions, 2 deletions
diff --git a/Changes b/Changes
index 0838fd71b..02d92b108 100644
--- a/Changes
+++ b/Changes
@@ -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]
diff --git a/src/modules.c b/src/modules.c
index 5843168e7..a02593119 100644
--- a/src/modules.c
+++ b/src/modules.c
@@ -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) {
diff --git a/version.log b/version.log
index 4789f954e..5230d4a60 100644
--- a/version.log
+++ b/version.log
@@ -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)