summaryrefslogtreecommitdiff
path: root/extra/resolve_stack_dump.c
diff options
context:
space:
mode:
authorroot@home.(none) <>2003-03-16 12:30:10 +0400
committerroot@home.(none) <>2003-03-16 12:30:10 +0400
commit5c6c54c09afe1658e03e3c365bb5f84ff2286d37 (patch)
treedba5acdcfade3de03935aa1867550c60b1e85696 /extra/resolve_stack_dump.c
parent1daed63ed8af3c0819e276788b4caab841804d73 (diff)
downloadmariadb-git-5c6c54c09afe1658e03e3c365bb5f84ff2286d37.tar.gz
system_charset_info has been moved to /sql directory
and isn't used in libraries any longer
Diffstat (limited to 'extra/resolve_stack_dump.c')
-rw-r--r--extra/resolve_stack_dump.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/extra/resolve_stack_dump.c b/extra/resolve_stack_dump.c
index f19ef467b5c..06a670b935d 100644
--- a/extra/resolve_stack_dump.c
+++ b/extra/resolve_stack_dump.c
@@ -175,9 +175,9 @@ trace dump and specify the path to it with -s or --symbols-file");
static uchar hex_val(char c)
{
uchar l;
- if (my_isdigit(system_charset_info,c))
+ if (my_isdigit(&my_charset_latin1,c))
return c - '0';
- l = my_tolower(system_charset_info,c);
+ l = my_tolower(&my_charset_latin1,c);
if (l < 'a' || l > 'f')
return HEX_INVALID;
return (uchar)10 + ((uchar)c - (uchar)'a');
@@ -203,10 +203,10 @@ static int init_sym_entry(SYM_ENTRY* se, char* buf)
if (!se->addr)
return -1;
- while (my_isspace(system_charset_info,*buf++))
+ while (my_isspace(&my_charset_latin1,*buf++))
/* empty */;
- while (my_isspace(system_charset_info,*buf++))
+ while (my_isspace(&my_charset_latin1,*buf++))
/* empty - skip more space */;
--buf;
/* now we are on the symbol */
@@ -288,7 +288,7 @@ static void do_resolve()
{
p = buf;
/* skip space */
- while (my_isspace(system_charset_info,*p))
+ while (my_isspace(&my_charset_latin1,*p))
++p;
if (*p++ == '0' && *p++ == 'x')