Type cast of constant string (empty) to keep compiler happy.

This commit is contained in:
Kristofer.Pettersson@naruto. 2007-04-02 14:03:33 +02:00
parent a4b3a9d31d
commit 6ca1e16e4e

View File

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