]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Fix parameter unused warning in net_help.c.
authorW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Thu, 3 Apr 2025 13:21:16 +0000 (15:21 +0200)
committerW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Thu, 3 Apr 2025 13:21:16 +0000 (15:21 +0200)
doc/Changelog
util/net_help.c

index 9e34b7a1de1b9277f4954506b793976f30cb70ae..9c820e45523f7d44b727748e0f2021f03831dbd0 100644 (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
index 81499f228e04bf48d0f98fff2fc1ab3baab135c2..c57228eeefc4bac5759696818fc1fccce1287dad 100644 (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)) {