[Privoxy-commits] [privoxy] 06/19: parse_chunk_size(): Reduce log noise
User Git
git at git.privoxy.org
Thu Jun 11 08:29:10 CEST 2026
This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository privoxy.
commit eabc3359de0ffd43a4f750e7b2dc5389e1e683bd
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Sun Jun 7 10:25:55 2026 +0200
parse_chunk_size(): Reduce log noise
... by not explicitly logging how many leading zeros have been skipped.
---
filters.c | 7 -------
1 file changed, 7 deletions(-)
diff --git a/filters.c b/filters.c
index 9a396bba..15b7807c 100644
--- a/filters.c
+++ b/filters.c
@@ -2439,13 +2439,6 @@ jb_err parse_chunk_size(char *buffer, size_t buffer_size, unsigned int *chunk_si
*/
leading_zeros--;
}
-
- if (leading_zeros != 0)
- {
- log_error(LOG_LEVEL_RE_FILTER,
- "Parsing the chunk-size after skipping %d leading zeros.",
- leading_zeros);
- }
}
if (sscanf(buffer + leading_zeros, "%x", chunk_size) != 1)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Privoxy-commits
mailing list