]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
Change unbound-dnstap-socket void cast for unused parameter
authorRalph Dolmans <ralph@nlnetlabs.nl>
Thu, 16 Jul 2020 10:31:30 +0000 (12:31 +0200)
committerRalph Dolmans <ralph@nlnetlabs.nl>
Thu, 16 Jul 2020 10:31:30 +0000 (12:31 +0200)
dnstap/unbound-dnstap-socket.c

index d530b9a89513d3e491e3f551df93abf86946e38f..44a0eda95994d251f1aac7b58f5d0c0eadb7e53b 100644 (file)
@@ -815,7 +815,7 @@ static int reply_with_accept(struct tap_data* data)
        return 1;
 #else
        log_err("no dnstap compiled, no reply");
-       (void)fd;
+       (void)data;
        return 0;
 #endif
 }