projects
/
privoxy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6f82645
)
can_filter_request_body(): Fix a log message that contained a spurious u
author
Fabian Keil
<fk@fabiankeil.de>
Sat, 27 Mar 2021 07:34:18 +0000
(08:34 +0100)
committer
Fabian Keil
<fk@fabiankeil.de>
Sun, 19 Dec 2021 14:46:06 +0000
(15:46 +0100)
jcc.c
patch
|
blob
|
history
diff --git
a/jcc.c
b/jcc.c
index
2beca7b
..
5ed93b3
100644
(file)
--- a/
jcc.c
+++ b/
jcc.c
@@
-2159,7
+2159,7
@@
static int can_filter_request_body(const struct client_state *csp)
{
log_error(LOG_LEVEL_INFO,
"Not filtering request body from %s: buffer limit %lu will be exceeded "
- "(content length %llu
u
)", csp->ip_addr_str, csp->config->buffer_limit,
+ "(content length %llu)", csp->ip_addr_str, csp->config->buffer_limit,
csp->expected_client_content_length);
return FALSE;
}