client_if_modified_since(): Remove an unused argument from a log_error() call
authorFabian Keil <fk@fabiankeil.de>
Fri, 11 Sep 2020 12:40:35 +0000 (14:40 +0200)
committerFabian Keil <fk@fabiankeil.de>
Fri, 11 Sep 2020 14:35:40 +0000 (16:35 +0200)
parsers.c

index 2b3a34f..4908f27 100644 (file)
--- a/parsers.c
+++ b/parsers.c
@@ -3570,8 +3570,8 @@ static jb_err client_if_modified_since(struct client_state *csp, char **header)
             }
             else
             {
-               log_error(LOG_LEVEL_ERROR, "Random range is 0. Assuming time transformation test.",
-                  *header);
+               log_error(LOG_LEVEL_ERROR,
+                  "Random range is 0. Assuming time transformation test.");
             }
             tm += rtime * (negative_range ? -1 : 1);
             timeptr = privoxy_gmtime_r(&tm, &gmt);