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:
c74183d
)
read_https_request_body(): End more log messages with periods.
author
Fabian Keil
<fk@fabiankeil.de>
Thu, 5 May 2022 15:42:36 +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
3322574
..
02f6f25
100644
(file)
--- a/
jcc.c
+++ b/
jcc.c
@@
-2302,7
+2302,7
@@
static int read_https_request_body(struct client_state *csp)
if (len <= 0)
{
log_error(LOG_LEVEL_CONNECT,
if (len <= 0)
{
log_error(LOG_LEVEL_CONNECT,
- "Did not receive the whole encrypted request body from %s",
+ "Did not receive the whole encrypted request body from %s
.
",
csp->ip_addr_str);
return 1;
}
csp->ip_addr_str);
return 1;
}
@@
-2316,13
+2316,13
@@
static int read_https_request_body(struct client_state *csp)
if (to_read != 0)
{
log_error(LOG_LEVEL_CONNECT,
if (to_read != 0)
{
log_error(LOG_LEVEL_CONNECT,
- "Not enough encrypted request body has been read: expected %lu more bytes",
+ "Not enough encrypted request body has been read: expected %lu more bytes
.
",
to_read);
return 1;
}
log_error(LOG_LEVEL_CONNECT,
to_read);
return 1;
}
log_error(LOG_LEVEL_CONNECT,
- "The last %llu bytes of the encrypted request body have been read",
+ "The last %llu bytes of the encrypted request body have been read
.
",
csp->expected_client_content_length);
return 0;
}
csp->expected_client_content_length);
return 0;
}