diff options
| author | 2005-04-18 04:01:50 +0000 | |
|---|---|---|
| committer | 2005-04-18 04:01:50 +0000 | |
| commit | 2d731a2feeee0d4802dfbea6daab5a0a7e7ffd9a (patch) | |
| tree | 77a95956630c4dfd493ca2a9f1fca038bae2d2a4 /src/commands.cpp | |
| parent | Fixed bug #47 reported (and suggested fix) by Om (diff) | |
Fixed strhashcomp
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1115 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/commands.cpp')
| -rw-r--r-- | src/commands.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/commands.cpp b/src/commands.cpp index ac5de7267..79f1f7c78 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -159,6 +159,8 @@ struct StrHashComp char a[MAXBUF],b[MAXBUF]; strlcpy(a,s1.c_str(),MAXBUF); strlcpy(b,s2.c_str(),MAXBUF); + strlower(a); + strlower(b); return (strcasecmp(a,b) == 0); } |
