receive_and_send_encrypted_post_data(): Add periods to a couple of log messages
[privoxy.git] / fuzz.c
diff --git a/fuzz.c b/fuzz.c
index 6b94d16..88fb74c 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));
 }
 
 
@@ -429,7 +429,7 @@ static int fuzz_gzip(struct client_state *csp, char *fuzz_input_file)
  * Function    :  fuzz_socks
  *
  * Description :  Treat the fuzzed input as a socks response.
- *                XXX: This is pretty useless as parsing socks repsonse
+ *                XXX: This is pretty useless as parsing socks response
  *                     is trivial.
  *
  * Parameters  :
@@ -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));
 }
 
 /*********************************************************************