From e9e6868789b0eef0cad99b2964f73474662e0f6b Mon Sep 17 00:00:00 2001 From: Andreas Mohr Date: Sat, 11 Apr 2015 12:35:37 +0300 Subject: [PATCH] is_7bit_printable() is used only if support of charset selection and conversion is disabled. --- lib/util.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/util.c b/lib/util.c index db0557d69..0536df9cb 100644 --- a/lib/util.c +++ b/lib/util.c @@ -78,11 +78,13 @@ /*** file scope functions ************************************************************************/ /* --------------------------------------------------------------------------------------------- */ +#ifndef HAVE_CHARSET static inline int is_7bit_printable (unsigned char c) { return (c > 31 && c < 127); } +#endif /* --------------------------------------------------------------------------------------------- */ -- 2.11.4.GIT