summaryrefslogtreecommitdiff
path: root/bin/pax/sel_subs.c
diff options
context:
space:
mode:
Diffstat (limited to 'bin/pax/sel_subs.c')
-rw-r--r--bin/pax/sel_subs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/pax/sel_subs.c b/bin/pax/sel_subs.c
index 6327bafb25e..27e0f61a0cd 100644
--- a/bin/pax/sel_subs.c
+++ b/bin/pax/sel_subs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sel_subs.c,v 1.21 2012/12/04 02:24:45 deraadt Exp $ */
+/* $OpenBSD: sel_subs.c,v 1.22 2013/11/21 15:54:45 deraadt Exp $ */
/* $NetBSD: sel_subs.c,v 1.5 1995/03/21 09:07:42 cgd Exp $ */
/*-
@@ -534,7 +534,7 @@ str_sec(const char *p, time_t *tval)
len = strlen(p);
for (t = p, dot = NULL; *t; ++t) {
- if (isdigit(*t))
+ if (isdigit((unsigned char)*t))
continue;
if (*t == '.' && dot == NULL) {
dot = t;