diff options
Diffstat (limited to '')
-rw-r--r-- | src/postalias/postalias.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/postalias/postalias.c b/src/postalias/postalias.c index d17e397..72ca729 100644 --- a/src/postalias/postalias.c +++ b/src/postalias/postalias.c @@ -393,7 +393,7 @@ static void postalias(char *map_type, char *path_name, int postalias_flags, */ if ((mkmap->dict->flags & DICT_FLAG_UTF8_ACTIVE) && !allascii(STR(line_buffer)) - && !valid_utf8_string(STR(line_buffer), LEN(line_buffer))) { + && !valid_utf8_stringz(STR(line_buffer))) { msg_warn("%s, line %d: non-UTF-8 input \"%s\"" " -- ignoring this line", VSTREAM_PATH(source_fp), lineno, STR(line_buffer)); |