1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

cleanup: octet2hex takes an uchar* argument

char is a character, uchar is an octet.
casts removed (or added) as needed
This commit is contained in:
Sergei Golubchik
2023-09-27 16:03:11 +02:00
parent d7699c51eb
commit 03094bbc8a
11 changed files with 19 additions and 19 deletions

View File

@@ -717,7 +717,7 @@ void scramble(char *to, const char *message, const char *password);
my_bool check_scramble(const unsigned char *reply, const char *message,
const unsigned char *hash_stage2);
void get_salt_from_password(unsigned char *res, const char *password);
char *octet2hex(char *to, const char *str, size_t len);
char *octet2hex(char *to, const unsigned char *str, size_t len);
/* end of password.c */