1
0
mirror of https://github.com/MariaDB/server.git synced 2025-06-13 13:01:51 +03:00

After merge fixes

This commit is contained in:
monty@mysql.com
2004-10-20 17:28:40 +03:00
parent e1218474b8
commit 4e63fb9891
3 changed files with 6 additions and 6 deletions

View File

@ -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);