diff options
Diffstat (limited to 'lib/libwrap/options.c')
-rw-r--r-- | lib/libwrap/options.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libwrap/options.c b/lib/libwrap/options.c index 0a4fcc131f2..67990952ff5 100644 --- a/lib/libwrap/options.c +++ b/lib/libwrap/options.c @@ -1,4 +1,4 @@ -/* $OpenBSD: options.c,v 1.7 2013/11/13 22:37:15 deraadt Exp $ */ +/* $OpenBSD: options.c,v 1.8 2013/11/22 07:49:44 deraadt Exp $ */ /* * General skeleton for adding options to the access control language. The @@ -619,7 +619,7 @@ register char *string; char *cp; for (cp = string; *cp; cp++) { - if (!isspace(*cp)) { + if (!isspace((unsigned char)*cp)) { if (start == 0) start = cp; end = cp; |