fuzz_client_header(): Fix compiler warning
authorFabian Keil <fk@fabiankeil.de>
Sat, 6 Feb 2021 10:07:03 +0000 (11:07 +0100)
committerFabian Keil <fk@fabiankeil.de>
Sun, 21 Feb 2021 15:09:20 +0000 (16:09 +0100)
fuzz.c

diff --git a/fuzz.c b/fuzz.c
index a637e7b..ea50aac 100644 (file)
--- a/fuzz.c
+++ b/fuzz.c
@@ -321,7 +321,7 @@ int fuzz_client_header(struct client_state *csp, char *fuzz_input_file)
 
    /* XXX: Enable more actions. */
 
-   return(sed(csp, FILTER_CLIENT_HEADERS));
+   return(JB_ERR_OK == sed(csp, FILTER_CLIENT_HEADERS));
 }