diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2015-10-11 03:23:29 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2015-10-11 03:23:29 +0000 |
commit | 2a3b9501336a22644372506101fb9eb0f30c75f1 (patch) | |
tree | bf6c88d47c0b08ad63008e8f6ae0d48b0f6776ac /usr.sbin/ldapd | |
parent | 20b5117dc17ca67292a67e1c2cd35b393135cad8 (diff) |
The <ctype.h> is*() interfaces expect EOF or an unsigned char; cast to
(unsigned char) as required
found by Michael McConville (mmcconv1 (at) sccs.swarthmore.edu) w/Coccinelle
Diffstat (limited to 'usr.sbin/ldapd')
-rw-r--r-- | usr.sbin/ldapd/syntax.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ldapd/syntax.c b/usr.sbin/ldapd/syntax.c index bfae26effc9..27f73527248 100644 --- a/usr.sbin/ldapd/syntax.c +++ b/usr.sbin/ldapd/syntax.c @@ -1,4 +1,4 @@ -/* $OpenBSD: syntax.c,v 1.2 2013/11/23 18:02:44 deraadt Exp $ */ +/* $OpenBSD: syntax.c,v 1.3 2015/10/11 03:23:28 guenther Exp $ */ /* * Copyright (c) 2010 Martin Hedenfalk <martin@bzero.se> @@ -142,7 +142,7 @@ syntax_is_printable_string(struct schema *schema, char *value, size_t len) char *p; for (p = value; len > 0 && *p != '\0'; p++, len--) { - if (!isalnum(*p) && strchr(special, *p) == NULL) + if (!isalnum((unsigned char)*p) && strchr(special, *p) == NULL) return 0; } |