From: Fabian Keil Date: Sat, 6 Feb 2021 10:07:13 +0000 (+0100) Subject: fuzz_server_header(): Fix compiler warning X-Git-Tag: v_3_0_32~71 X-Git-Url: http://www.privoxy.org/gitweb/contact.html?a=commitdiff_plain;h=39b86635af847a389e9d0c08af3c018cf260bbec;p=privoxy.git fuzz_server_header(): Fix compiler warning --- diff --git a/fuzz.c b/fuzz.c index ea50aaca..88fb74ce 100644 --- a/fuzz.c +++ b/fuzz.c @@ -520,7 +520,7 @@ int fuzz_server_header(struct client_state *csp, char *fuzz_input_file) /* XXX: Enable more actions. */ - return(sed(csp, FILTER_SERVER_HEADERS)); + return(JB_ERR_OK == sed(csp, FILTER_SERVER_HEADERS)); } /*********************************************************************