Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
grondinjc committed Sep 11, 2024
1 parent 3b0d3b8 commit b7765a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sslsocket.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ SSL* SSL_new_client()
SSL* ssl = SSL_new(sip_trp_ssl_ctx_client);

// Inject the ServerNameIndication (SNI).
// It requires to be a hostname. However, SSL takes whatever we set.
// It requires to be a hostname. However, SSL takes whatever we set.
// Ref https://datatracker.ietf.org/doc/html/rfc6066#section-3
if (strcmp(remote_ip, remote_host)) {
SSL_set_tlsext_host_name(ssl, remote_host);
Expand Down

0 comments on commit b7765a5

Please sign in to comment.