1
0
mirror of https://github.com/Yubico/yubico-pam.git synced 2025-02-17 21:54:15 +01:00

mysql: is_null and error should be my_bool not bool

This commit is contained in:
Klas Lindfors 2021-01-12 08:50:57 +01:00
parent d468b61caf
commit 3b3d341a06
No known key found for this signature in database
GPG Key ID: BCA00FD4B2168C0A

4
util.c
View File

@ -136,8 +136,8 @@ check_user_token_mysql(const char *mysql_server,
long unsigned int length; long unsigned int length;
int int_data; int int_data;
int row_count; int row_count;
bool is_null; my_bool is_null;
bool error; my_bool error;
if(mysql_library_init(0, NULL, NULL)){ if(mysql_library_init(0, NULL, NULL)){
if(verbose){ if(verbose){