diff options
author | unknown <monty@mysql.com> | 2004-10-20 17:28:40 +0300 |
---|---|---|
committer | unknown <monty@mysql.com> | 2004-10-20 17:28:40 +0300 |
commit | 4ba94cc3f9f3d3916e235ce8b15a36b501fe61ce (patch) | |
tree | 278ebedd23011b4ff6086cb7fd430402993702ca /libmysql | |
parent | 560d7bcdd0c80551b7844b3669be503113c91ddf (diff) | |
download | mariadb-git-4ba94cc3f9f3d3916e235ce8b15a36b501fe61ce.tar.gz |
After merge fixes
Diffstat (limited to 'libmysql')
-rw-r--r-- | libmysql/libmysql.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libmysql/libmysql.c b/libmysql/libmysql.c index fb405a7b868..9b97c52acec 100644 --- a/libmysql/libmysql.c +++ b/libmysql/libmysql.c @@ -1570,8 +1570,8 @@ ulong mysql_hex_string(char *to, const char *from, ulong length) for (end= from + length; from < end; from++) { - *to++= _dig_vec[((unsigned char) *from) >> 4]; - *to++= _dig_vec[((unsigned char) *from) & 0x0F]; + *to++= _dig_vec_upper[((unsigned char) *from) >> 4]; + *to++= _dig_vec_upper[((unsigned char) *from) & 0x0F]; } *to= '\0'; return (ulong) (to-to0); |