1
0
mirror of https://github.com/mariadb-corporation/mariadb-connector-c.git synced 2025-08-07 02:42:49 +03:00

Fix for CONC-120: mariadb_deinitialize_ssl was declared as uint (which requires including my_global.h) instead of unsigned int

This commit is contained in:
Georg Richter
2015-02-06 06:48:56 +01:00
parent 77168332cf
commit 0b5a685dc0

View File

@@ -80,7 +80,7 @@ typedef int my_socket;
extern unsigned int mysql_port;
extern char *mysql_unix_port;
extern uint mariadb_deinitialize_ssl;
extern unsigned int mariadb_deinitialize_ssl;
#define IS_PRI_KEY(n) ((n) & PRI_KEY_FLAG)
#define IS_NOT_NULL(n) ((n) & NOT_NULL_FLAG)