- Fix parameter unused warning in net_help.c.

This commit is contained in:
W.C.A. Wijngaards 2025-04-03 15:21:16 +02:00
parent 53ecdb25ef
commit cb5a019d9f
2 changed files with 3 additions and 0 deletions

View file

@ -4,6 +4,7 @@
to allow two arguments.
- Fix ub_event and include dnstap and win_svc headers.
- Fix test for stat_values for wait limit defaults for localhost.
- Fix parameter unused warning in net_help.c.
2 April 2025: Yorgos
- Merge #1262 from markyang92, fix build with

View file

@ -1393,6 +1393,8 @@ void* listen_sslctx_create(const char* key, const char* pem,
return NULL;
}
}
#else
(void)tls_ciphersuites; /* variable unused. */
#endif /* HAVE_SSL_CTX_SET_CIPHERSUITES */
if(set_ticket_keys_cb) {
if(!setup_ticket_keys_cb(ctx)) {