Don't call isprint() if --8-bit was specified.
authorWayne Davison <wayned@samba.org>
Mon, 6 Feb 2006 18:42:02 +0000 (18:42 +0000)
committerWayne Davison <wayned@samba.org>
Mon, 6 Feb 2006 18:42:02 +0000 (18:42 +0000)
log.c

diff --git a/log.c b/log.c
index 4b78d25..743cf93 100644 (file)
--- a/log.c
+++ b/log.c
@@ -39,6 +39,7 @@ extern int local_server;
 extern int quiet;
 extern int module_id;
 extern int msg_fd_out;
+extern int allow_8bit_chars;
 extern int protocol_version;
 extern int preserve_times;
 extern int log_format_has_i;
@@ -318,7 +319,7 @@ void rwrite(enum logcode code, char *buf, int len)
                        filtered_fwrite(f, convbuf, out_buf - convbuf, 0);
        } else
 #endif
-               filtered_fwrite(f, buf, len, 1);
+               filtered_fwrite(f, buf, len, !allow_8bit_chars);
 
        if (trailing_CR_or_NL) {
                fputc(trailing_CR_or_NL, f);