1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

libmysql.c:

SLL -> SSL


libmysql/libmysql.c:
  SLL -> SSL
This commit is contained in:
unknown
2003-01-04 13:35:52 +04:00
parent ce4415340e
commit a533a95c28

View File

@ -1763,7 +1763,7 @@ mysql_ssl_set(MYSQL *mysql __attribute__((unused)) ,
NB! Errors are not reported until you do mysql_real_connect. NB! Errors are not reported until you do mysql_real_connect.
**************************************************************************/ **************************************************************************/
#ifdef HAVE_OPENSLL #ifdef HAVE_OPENSSL
static void static void
mysql_ssl_free(MYSQL *mysql __attribute__((unused))) mysql_ssl_free(MYSQL *mysql __attribute__((unused)))
{ {
@ -1781,7 +1781,7 @@ mysql_ssl_free(MYSQL *mysql __attribute__((unused)))
mysql->options.use_ssl = FALSE; mysql->options.use_ssl = FALSE;
mysql->connector_fd = 0; mysql->connector_fd = 0;
} }
#endif /* HAVE_OPENSLL */ #endif /* HAVE_OPENSSL */
/************************************************************************** /**************************************************************************
Connect to sql server Connect to sql server