summaryrefslogtreecommitdiffstats
path: root/usr.bin/ftp
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1997-12-16 08:17:26 +0000
committerache <ache@FreeBSD.org>1997-12-16 08:17:26 +0000
commit126c5b135890ca392234b124346ac9a224f2ca4b (patch)
tree4e07e174cdb8cbdcd561cc3a5f6200db9664a5ed /usr.bin/ftp
parent22f7680abfd8a70e0484f1ea5dc015662ece08a3 (diff)
downloadFreeBSD-src-126c5b135890ca392234b124346ac9a224f2ca4b.zip
FreeBSD-src-126c5b135890ca392234b124346ac9a224f2ca4b.tar.gz
Add (unsigned char) cast to ctype macro
Diffstat (limited to 'usr.bin/ftp')
-rw-r--r--usr.bin/ftp/util.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ftp/util.c b/usr.bin/ftp/util.c
index b69e6a7..08111dd 100644
--- a/usr.bin/ftp/util.c
+++ b/usr.bin/ftp/util.c
@@ -1,4 +1,4 @@
-/* $Id$ */
+/* $Id: util.c,v 1.3 1997/12/13 20:38:21 pst Exp $ */
/* $NetBSD: util.c,v 1.16.2.1 1997/11/18 01:02:33 mellon Exp $ */
/*
@@ -36,7 +36,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$Id$");
+__RCSID("$Id: util.c,v 1.3 1997/12/13 20:38:21 pst Exp $");
__RCSID_SOURCE("$NetBSD: util.c,v 1.16.2.1 1997/11/18 01:02:33 mellon Exp $");
#endif /* not lint */
@@ -489,7 +489,7 @@ remotesize(file, noisy)
if (cp != NULL) {
cp++;
size = strtoq(cp, &ep, 10);
- if (*ep != '\0' && !isspace(*ep))
+ if (*ep != '\0' && !isspace((unsigned char)*ep))
size = -1;
}
} else if (noisy && debug == 0)
OpenPOWER on IntegriCloud