summaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorunknown <msvensson@neptunus.(none)>2006-02-28 10:52:36 +0100
committerunknown <msvensson@neptunus.(none)>2006-02-28 10:52:36 +0100
commitba3b8fd8e5e32db71bd73ac061844fb2766067aa (patch)
treed550d224189b462d7b23b209e16e3fba9f18f034 /sql
parentf56e873418b1197525552b88b1d6a4d6b472543b (diff)
parent79fbd665820592eda77b7c64807d4a1d70de8ad5 (diff)
downloadmariadb-git-ba3b8fd8e5e32db71bd73ac061844fb2766067aa.tar.gz
Merge msvensson@devsrv-b.mysql.com:/space/magnus/bug17279/my50-bug17279/
into neptunus.(none):/home/msvensson/mysql/mysql-5.0
Diffstat (limited to 'sql')
-rw-r--r--sql/sql_acl.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/sql/sql_acl.cc b/sql/sql_acl.cc
index c67ce383398..88c3c86aacb 100644
--- a/sql/sql_acl.cc
+++ b/sql/sql_acl.cc
@@ -148,7 +148,9 @@ my_bool acl_init(bool dont_read_acl_tables)
acl_cache= new hash_filo(ACL_CACHE_SIZE, 0, 0,
(hash_get_key) acl_entry_get_key,
- (hash_free_key) free, system_charset_info);
+ (hash_free_key) free,
+ /* Use the case sensitive "binary" charset */
+ &my_charset_bin);
if (dont_read_acl_tables)
{
DBUG_RETURN(0); /* purecov: tested */