diff options
author | geniusdex 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 |
---|---|---|
committer | geniusdex 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 |
commit | 01ddc377e73cce4295ff03b63355ea1bd4d91b43 (patch) | |
tree | 21ce0df20565b4be67c7c643378e1062bf2d09e1 /src | |
parent | 5f5ac9f0d77d8d94cf1fc4e74f486e43df9c7e1d (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
Diffstat (limited to 'src')
-rw-r--r-- | src/modules.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |