From: Wayne Davison Date: Mon, 6 Feb 2006 18:42:02 +0000 (+0000) Subject: Don't call isprint() if --8-bit was specified. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/507433f6caec010564955a8e9133effb2fc50436 Don't call isprint() if --8-bit was specified. --- diff --git a/log.c b/log.c index 4b78d25b..743cf934 100644 --- 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);