summaryrefslogtreecommitdiff
path: root/lib/bind/irs/dns_nw.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bind/irs/dns_nw.c')
-rw-r--r--lib/bind/irs/dns_nw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bind/irs/dns_nw.c b/lib/bind/irs/dns_nw.c
index 106f50d1..9d9659bf 100644
--- a/lib/bind/irs/dns_nw.c
+++ b/lib/bind/irs/dns_nw.c
@@ -16,7 +16,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static const char rcsid[] = "$Id: dns_nw.c,v 1.3.2.7 2004/05/17 07:46:42 marka Exp $";
+static const char rcsid[] = "$Id: dns_nw.c,v 1.3.2.8 2004/09/16 00:57:45 marka Exp $";
#endif /* LIBC_SCCS and not lint */
/* Imports. */
@@ -569,7 +569,7 @@ normalize_name(char *name) {
/* Make lower case. */
for (t = name; *t; t++)
if (isascii((unsigned char)*t) && isupper((unsigned char)*t))
- *t = tolower(*t);
+ *t = tolower((*t)&0xff);
/* Remove trailing dots. */
while (t > name && t[-1] == '.')