Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'agent/tcf/framework/proxy.c')
-rw-r--r--agent/tcf/framework/proxy.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/agent/tcf/framework/proxy.c b/agent/tcf/framework/proxy.c
index ea44dabf..e5f389e7 100644
--- a/agent/tcf/framework/proxy.c
+++ b/agent/tcf/framework/proxy.c
@@ -132,7 +132,9 @@ static void log_byte_func(int i) {
/* Printable ASCII */
log_chr(i);
}
- else if (i == 0) {
+ else if (i == 0 || i == ' ') {
+ /* Leave spaces as is for better log readibility */
+
log_chr(' ');
}
else if (i > 0) {

Back to the top