summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authormsvensson@pilot.blaudden <>2007-03-27 21:04:05 +0200
committermsvensson@pilot.blaudden <>2007-03-27 21:04:05 +0200
commite57392f4b444d6ce18351930ed7c024c5dfe243b (patch)
tree1a85bf9487aab23c78b5aee4b97bdf85f0aef7f2 /include
parent0559be3469345eaccf5d969cc7a50eec7fee3ee4 (diff)
downloadmariadb-git-e57392f4b444d6ce18351930ed7c024c5dfe243b.tar.gz
Bug #24121 Incorrect test for SSL_VERIFY_SERVER_CERT
- Change 'mysql_options' third argment "arg" to "const void*"
Diffstat (limited to 'include')
-rw-r--r--include/mysql.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mysql.h b/include/mysql.h
index f76ae10ca16..33bdf80ef73 100644
--- a/include/mysql.h
+++ b/include/mysql.h
@@ -525,7 +525,7 @@ MYSQL_RES * STDCALL mysql_list_dbs(MYSQL *mysql,const char *wild);
MYSQL_RES * STDCALL mysql_list_tables(MYSQL *mysql,const char *wild);
MYSQL_RES * STDCALL mysql_list_processes(MYSQL *mysql);
int STDCALL mysql_options(MYSQL *mysql,enum mysql_option option,
- const char *arg);
+ const void *arg);
void STDCALL mysql_free_result(MYSQL_RES *result);
void STDCALL mysql_data_seek(MYSQL_RES *result,
my_ulonglong offset);