Skip to content

Commit

Permalink
fix semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
axos88 committed Oct 1, 2022
1 parent 477d65c commit 355e718
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/esp_https_server/src/https_server.c
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,8 @@ static httpd_ssl_ctx_t *create_secure_context(const struct httpd_ssl_config *con
}

#if defined(CONFIG_ESP_TLS_SERVER_SNI_HOOK)
cfg->sni_callback = config->sni_callback
cfg->sni_callback_p_info = config->sni_callback_p_info
cfg->sni_callback = config->sni_callback;
cfg->sni_callback_p_info = config->sni_callback_p_info;
#endif

ssl_ctx->tls_cfg = cfg;
Expand Down

0 comments on commit 355e718

Please sign in to comment.