From 6fd3e5298ade9c92ac2bb543e2c8c740feb16001 Mon Sep 17 00:00:00 2001 From: Brad House Date: Sun, 26 May 2024 13:08:25 -0400 Subject: [PATCH] ares__isprint() should have been moved for last backport --- src/lib/ares__buf.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/lib/ares__buf.c b/src/lib/ares__buf.c index 7373f153..c6c5ef9b 100644 --- a/src/lib/ares__buf.c +++ b/src/lib/ares__buf.c @@ -45,14 +45,6 @@ struct ares__buf { * SIZE_MAX if not set. */ }; -ares_bool_t ares__isprint(int ch) -{ - if (ch >= 0x20 && ch <= 0x7E) { - return ARES_TRUE; - } - return ARES_FALSE; -} - /* Character set allowed by hostnames. This is to include the normal * domain name character set plus: * - underscores which are used in SRV records.