diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-12-07 18:31:57 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-12-07 18:31:57 +0000 |
commit | 805d47c98e48df374976972c3fcbba36fd4289f8 (patch) | |
tree | d55b8cf542010770881bef33e269f6ce62e4b394 /src/command_parse.cpp | |
parent | 6c389362435138c1523e4aedb53938100f6b4c47 (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/command_parse.cpp')
-rw-r--r-- | src/command_parse.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp index 8798f03f0..eeb4b3e9f 100644 --- a/src/command_parse.cpp +++ b/src/command_parse.cpp @@ -578,7 +578,7 @@ void CommandParser::SetupCommandTable() dirent* entry = NULL; while (0 != (entry = readdir(library))) { - if (InspIRCd::Match(entry->d_name, "cmd_*.so")) + if (InspIRCd::Match(entry->d_name, "cmd_*.so", ascii_case_insensitive_map)) { printf("."); fflush(stdout); |