projects
/
privoxy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c24e1b4
)
read_http_request_body(): End more log messages with periods.
author
Fabian Keil
<fk@fabiankeil.de>
Thu, 5 May 2022 15:42:26 +0000
(17:42 +0200)
committer
Fabian Keil
<fk@fabiankeil.de>
Fri, 6 May 2022 10:40:01 +0000
(12:40 +0200)
jcc.c
patch
|
blob
|
history
diff --git
a/jcc.c
b/jcc.c
index
ecb27b9
..
3322574
100644
(file)
--- a/
jcc.c
+++ b/
jcc.c
@@
-2122,12
+2122,12
@@
static int read_http_request_body(struct client_state *csp)
if (to_read != 0)
{
log_error(LOG_LEVEL_CONNECT,
- "Not enough request body has been read: expected %lu more bytes",
+ "Not enough request body has been read: expected %lu more bytes
.
",
to_read);
return 1;
}
log_error(LOG_LEVEL_CONNECT,
- "The last %d bytes of the request body have been read", len);
+ "The last %d bytes of the request body have been read
.
", len);
return 0;
}