Skip to content

Commit

Permalink
Style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitriPapadopoulos committed Nov 14, 2023
1 parent 5345fdc commit 0c41c33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tunnel.c
Original file line number Diff line number Diff line change
Expand Up @@ -1270,7 +1270,7 @@ int ssl_connect(struct tunnel *tunnel)


// Set SNI for the session
const char *sni = tunnel->config->sni ? tunnel->config->sni : \
const char *sni = tunnel->config->sni ? tunnel->config->sni :
tunnel->config->gateway_host;
if (SSL_set_tlsext_host_name(tunnel->ssl_handle, sni) != 1)
log_warn("SSL_set_tlsext_host_name('%s'): %s\n",
Expand Down

0 comments on commit 0c41c33

Please sign in to comment.