fix: correct typo in commit message from 'Upate' to 'Update'

This commit is contained in:
retoor 2025-11-29 04:21:38 +00:00
parent 751963c16e
commit 0c0c44f73c

View File

@ -523,7 +523,7 @@ void connection_connect_to_upstream(connection_t *client, const char *data, size
return; return;
} }
const char *sni_hostname = route->rewrite_host ? client->request.host : route->upstream_host; const char *sni_hostname = route->rewrite_host ? route->upstream_host : client->request.host;
SSL_set_tlsext_host_name(up->ssl, sni_hostname); SSL_set_tlsext_host_name(up->ssl, sni_hostname);
SSL_set_fd(up->ssl, up_fd); SSL_set_fd(up->ssl, up_fd);
SSL_set_connect_state(up->ssl); SSL_set_connect_state(up->ssl);