summaryrefslogtreecommitdiff
path: root/sql/sp_pcontext.cc
diff options
context:
space:
mode:
authorpem@mysql.com <>2003-03-27 17:35:27 +0100
committerpem@mysql.com <>2003-03-27 17:35:27 +0100
commitac44a5f66e0a0846e1a6146266bd54b11672e55a (patch)
tree2aa1025394aef64bf23d2c52e042ec28470af788 /sql/sp_pcontext.cc
parentc77699ca93611160c46a7b4988621e9b528817d6 (diff)
downloadmariadb-git-ac44a5f66e0a0846e1a6146266bd54b11672e55a.tar.gz
Replaced a couple of strcasecmps.
Diffstat (limited to 'sql/sp_pcontext.cc')
-rw-r--r--sql/sp_pcontext.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sp_pcontext.cc b/sql/sp_pcontext.cc
index 94eb8df4b95..d59db9b449b 100644
--- a/sql/sp_pcontext.cc
+++ b/sql/sp_pcontext.cc
@@ -120,7 +120,7 @@ sp_pcontext::find_label(char *name)
sp_label_t *lab;
while ((lab= li++))
- if (strcasecmp(name, lab->name) == 0)
+ if (my_strcasecmp(system_charset_info, name, lab->name) == 0)
return lab;
return NULL;