projects
/
privoxy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
4bd83c3
)
client_if_modified_since(): Remove an unused argument from a log_error() call
author
Fabian Keil
<fk@fabiankeil.de>
Fri, 11 Sep 2020 12:40:35 +0000
(14:40 +0200)
committer
Fabian Keil
<fk@fabiankeil.de>
Fri, 11 Sep 2020 14:35:40 +0000
(16:35 +0200)
parsers.c
patch
|
blob
|
history
diff --git
a/parsers.c
b/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);