fix hard tabs, new line

This commit is contained in:
Takashi Kojo
2017-11-29 07:03:00 +09:00
parent 64caf325f8
commit b664a1187b
2 changed files with 13 additions and 10 deletions

View File

@ -11471,7 +11471,8 @@ int wolfSSL_set_compression(WOLFSSL* ssl)
{
WOLFSSL_ENTER("wolfSSL_CTX_get_options");
WOLFSSL_MSG("wolfSSL options are set through API calls and macros");
if(ctx == NULL)return SSL_FAILURE;
if(ctx == NULL)
return SSL_FAILURE;
return ctx->mask;
}
@ -11480,9 +11481,11 @@ int wolfSSL_set_compression(WOLFSSL* ssl)
{
WOLFSSL *ssl;
WOLFSSL_ENTER("SSL_CTX_set_options");
if(ctx == NULL)return SSL_FAILURE;
if(ctx == NULL)
return SSL_FAILURE;
ssl = wolfSSL_new(ctx);
if(ssl == NULL)return SSL_FAILURE;
if(ssl == NULL)
return SSL_FAILURE;
ctx->mask = wolfSSL_set_options(ssl, opt);
wolfSSL_free(ssl);
return ctx->mask;