mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Update implementation of new function 'mysql_get_ssl_cipher' after review
client/mysql.cc: Only call mysql_get_ssl_cipher once, save the result in variable "status" libmysql/libmysql.def: Add new function mysql_get_ssl_cipher to exported functions in dll sql-common/client.c: Add missing return(DBUG_RETURN)
This commit is contained in:
@ -3212,9 +3212,9 @@ com_status(String *buffer __attribute__((unused)),
|
||||
mysql_free_result(result);
|
||||
}
|
||||
#ifdef HAVE_OPENSSL
|
||||
if (mysql_get_ssl_cipher(&mysql))
|
||||
if ((status= mysql_get_ssl_cipher(&mysql)))
|
||||
tee_fprintf(stdout, "SSL:\t\t\tCipher in use is %s\n",
|
||||
mysql_get_ssl_cipher(&mysql));
|
||||
status);
|
||||
else
|
||||
#endif /* HAVE_OPENSSL */
|
||||
tee_puts("SSL:\t\t\tNot in use", stdout);
|
||||
|
@ -65,6 +65,7 @@ EXPORTS
|
||||
mysql_get_proto_info
|
||||
mysql_get_server_info
|
||||
mysql_get_client_version
|
||||
mysql_get_ssl_cipher
|
||||
mysql_info
|
||||
mysql_init
|
||||
mysql_insert_id
|
||||
|
@ -1552,7 +1552,7 @@ mysql_get_ssl_cipher(MYSQL *mysql)
|
||||
{
|
||||
DBUG_ENTER("mysql_get_ssl_cipher");
|
||||
if (mysql->net.vio && mysql->net.vio->ssl_arg)
|
||||
SSL_get_cipher_name((SSL*)mysql->net.vio->ssl_arg);
|
||||
DBUG_RETURN(SSL_get_cipher_name((SSL*)mysql->net.vio->ssl_arg));
|
||||
DBUG_RETURN(NULL);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user