summaryrefslogtreecommitdiff
path: root/include/users.h
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2010-11-30 17:25:42 -0500
committerAdam <Adam@anope.org>2010-12-12 19:37:03 -0500
commita507816701d136a1c22d2f6779d811840d61577c (patch)
tree37e397d8e6d6f04685287b7ec3aa7d0662460da4 /include/users.h
parentc41c82857464c34c61e6f2cf1939cea866f7d49a (diff)
Fixed looking up users to use case insensitivity
Diffstat (limited to 'include/users.h')
-rw-r--r--include/users.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/users.h b/include/users.h
index b6e8ec612..26ee5f33e 100644
--- a/include/users.h
+++ b/include/users.h
@@ -8,7 +8,7 @@
#ifndef USERS_H
#define USERS_H
-extern CoreExport patricia_tree<User *, std::equal_to<ci::string> > UserListByNick;
+extern CoreExport patricia_tree<User *, ci::ci_char_traits> UserListByNick;
extern CoreExport patricia_tree<User *> UserListByUID;
class CoreExport ChannelStatus : public Flags<ChannelModeName, CMODE_END * 2>