From 33e4b9d9137b5dbb02a087956f1558ef30647aea Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Sat, 27 Apr 2024 12:48:31 +0000 Subject: Prepare for 2.3.7.2; implement dns-0x20 Signed-off-by: Laurent Bercot --- src/libs6dns/s6dns_domain_decode.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/libs6dns/s6dns_domain_decode.c') diff --git a/src/libs6dns/s6dns_domain_decode.c b/src/libs6dns/s6dns_domain_decode.c index 6fea0d6..e5fab0a 100644 --- a/src/libs6dns/s6dns_domain_decode.c +++ b/src/libs6dns/s6dns_domain_decode.c @@ -3,7 +3,6 @@ #include #include -#include #include @@ -12,7 +11,6 @@ static inline unsigned int s6dns_domain_label_decode (char *s, unsigned int max) unsigned int len = *(unsigned char *)s ; if ((len > 63) || (len >= max)) return (errno = EPROTO, 0) ; *s = '.' ; - case_lowerb(s+1, len) ; return len + 1 ; } -- cgit v1.2.3