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

Bug #24121 Incorrect test for SSL_VERIFY_SERVER_CERT

- Change 'mysql_options' third argment "arg" to "const void*"
This commit is contained in:
msvensson@pilot.blaudden
2007-03-27 21:04:05 +02:00
parent 0559be3469
commit e57392f4b4
2 changed files with 2 additions and 2 deletions

View File

@@ -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);

View File

@@ -2948,7 +2948,7 @@ mysql_fetch_lengths(MYSQL_RES *res)
int STDCALL
mysql_options(MYSQL *mysql,enum mysql_option option, const char *arg)
mysql_options(MYSQL *mysql,enum mysql_option option, const void *arg)
{
DBUG_ENTER("mysql_option");
DBUG_PRINT("enter",("option: %d",(int) option));