diff options
author | Adam <Adam@anope.org> | 2010-11-30 17:25:42 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-12-12 19:37:03 -0500 |
commit | a507816701d136a1c22d2f6779d811840d61577c (patch) | |
tree | 37e397d8e6d6f04685287b7ec3aa7d0662460da4 /src/users.cpp | |
parent | c41c82857464c34c61e6f2cf1939cea866f7d49a (diff) |
Fixed looking up users to use case insensitivity
Diffstat (limited to 'src/users.cpp')
-rw-r--r-- | src/users.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/users.cpp b/src/users.cpp index 58d931789..f6c0983ef 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -12,7 +12,7 @@ #include "services.h" #include "modules.h" -patricia_tree<User *, std::equal_to<ci::string> > UserListByNick; +patricia_tree<User *, ci::ci_char_traits> UserListByNick; patricia_tree<User *> UserListByUID; int32 opcnt = 0; |