mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-01-05 22:39:35 -05:00
- Fix parameter unused warning in net_help.c.
This commit is contained in:
parent
53ecdb25ef
commit
cb5a019d9f
2 changed files with 3 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue