mirror of
https://github.com/MariaDB/server.git
synced 2025-08-20 14:22:25 +00:00
MDEV-36337 auth_ed25519 correct UDF pointers for is_null/error
Shows up on test plugins.auth_ed25519. There isn't the import to define uchar so left as unsigned char.
This commit is contained in:

committed by
Sergei Golubchik

parent
0b5a084e27
commit
b9a20752a9
@ -135,7 +135,7 @@ maria_declare_plugin_end;
|
||||
MYSQL_PLUGIN_EXPORT
|
||||
char *ed25519_password(UDF_INIT *initid __attribute__((unused)),
|
||||
UDF_ARGS *args, char *result, unsigned long *length,
|
||||
char *is_null, char *error __attribute__((unused)))
|
||||
unsigned char *is_null, unsigned char *error __attribute__((unused)))
|
||||
{
|
||||
unsigned char pk[CRYPTO_PUBLICKEYBYTES];
|
||||
|
||||
|
Reference in New Issue
Block a user