Type cast of constant string (empty) to keep compiler happy.
This commit is contained in:
parent
a4b3a9d31d
commit
6ca1e16e4e
@ -6742,7 +6742,7 @@ static int show_ssl_get_version(THD *thd, SHOW_VAR *var, char *buff)
|
||||
if( thd->vio_ok() && thd->net.vio->ssl_arg )
|
||||
var->value= const_cast<char*>(SSL_get_version((SSL*) thd->net.vio->ssl_arg));
|
||||
else
|
||||
var->value= "";
|
||||
var->value= (char *)"";
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -6796,7 +6796,7 @@ static int show_ssl_get_cipher(THD *thd, SHOW_VAR *var, char *buff)
|
||||
if( thd->vio_ok() && thd->net.vio->ssl_arg )
|
||||
var->value= const_cast<char*>(SSL_get_cipher((SSL*) thd->net.vio->ssl_arg));
|
||||
else
|
||||
var->value= "";
|
||||
var->value= (char *)"";
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user