diff options
author | dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-09-29 20:19:18 +0000 |
---|---|---|
committer | dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-09-29 20:19:18 +0000 |
commit | 676b8eaf7fcec02ad2583dc0bcc531942b65068e (patch) | |
tree | d8405dc99f4b8a50935452374b7afc983dfde641 /src/modules.c | |
parent | b6f83ea4db94339449c05be946477b729e9b991a (diff) |
BUILD : 1.7.5 (362) BUGS : 17 143 147 166 172 173 NOTES : Applied patch 927 provided by Trystan.
git-svn-id: svn://svn.anope.org/anope/trunk@362 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@233 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/modules.c')
-rw-r--r-- | src/modules.c | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/src/modules.c b/src/modules.c index 7321c43b9..fede2de3c 100644 --- a/src/modules.c +++ b/src/modules.c @@ -1054,10 +1054,24 @@ Message *findMessage(MessageHash * msgTable[], const char *name) idx = CMD_HASH(name); for (current = msgTable[idx]; current; current = current->next) { - if (stricmp(name, current->name) == 0) { - return current->m; + if (UseTokens) { + if (ircd->tokencaseless) { + if (stricmp(name, current->name) == 0) { + return current->m; + } + } + else { + if (strcmp(name, current->name) == 0) { + return current->m; + } + } + } + else { + if (stricmp(name, current->name) == 0) { + return current->m; + } } - } + } return NULL; } |