summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgeniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2007-09-09 12:03:57 +0000
committergeniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2007-09-09 12:03:57 +0000
commit01ddc377e73cce4295ff03b63355ea1bd4d91b43 (patch)
tree21ce0df20565b4be67c7c643378e1062bf2d09e1
parent5f5ac9f0d77d8d94cf1fc4e74f486e43df9c7e1d (diff)
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
-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)