diff options
author | unknown <pem@mysql.com> | 2003-03-27 17:35:27 +0100 |
---|---|---|
committer | unknown <pem@mysql.com> | 2003-03-27 17:35:27 +0100 |
commit | e9cc965afdc60200efa058bdd71ff78093c63ef4 (patch) | |
tree | 2aa1025394aef64bf23d2c52e042ec28470af788 /sql/sp_pcontext.cc | |
parent | 8db55dcf86d87bece091520826f4142b96e9a283 (diff) | |
download | mariadb-git-e9cc965afdc60200efa058bdd71ff78093c63ef4.tar.gz |
Replaced a couple of strcasecmps.
Diffstat (limited to 'sql/sp_pcontext.cc')
-rw-r--r-- | sql/sp_pcontext.cc | 2 |
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; |