diff options
| author | 2008-12-07 18:31:57 +0000 | |
|---|---|---|
| committer | 2008-12-07 18:31:57 +0000 | |
| commit | 805d47c98e48df374976972c3fcbba36fd4289f8 (patch) | |
| tree | d55b8cf542010770881bef33e269f6ce62e4b394 /src/modules.cpp | |
| parent | national_case_sensitive_map must be static, thanks to the match stuff being s... (diff) | |
Move stuff to use ASCII map where required.
Also move this out of being a member totally, as it breaks (gah) and is already untidy.. to be revisited.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10858 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules.cpp')
| -rw-r--r-- | src/modules.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index 694601df9..0ea446c80 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -376,7 +376,7 @@ bool ModuleManager::Load(const char* filename) dirent* entry = NULL; while (0 != (entry = readdir(library))) { - if (InspIRCd::Match(entry->d_name, filename, NULL)) + if (InspIRCd::Match(entry->d_name, filename, ascii_case_insensitive_map)) { if (!this->Load(entry->d_name)) n_match++; |
