Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libc/gen Cast argument to isspace to (unsigned char) to ...



details:   https://anonhg.NetBSD.org/src/rev/995af662ee23
branches:  trunk
changeset: 467790:995af662ee23
user:      abs <abs%NetBSD.org@localhost>
date:      Mon Mar 29 09:27:29 1999 +0000

description:
Cast argument to isspace to (unsigned char) to pass zoularis.

diffstat:

 lib/libc/gen/getcap.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (29 lines):

diff -r 5ba1293665b8 -r 995af662ee23 lib/libc/gen/getcap.c
--- a/lib/libc/gen/getcap.c     Mon Mar 29 08:58:30 1999 +0000
+++ b/lib/libc/gen/getcap.c     Mon Mar 29 09:27:29 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: getcap.c,v 1.28 1999/03/23 02:58:50 abs Exp $  */
+/*     $NetBSD: getcap.c,v 1.29 1999/03/29 09:27:29 abs Exp $  */
 
 /*-
  * Copyright (c) 1992, 1993
@@ -41,7 +41,7 @@
 #if 0
 static char sccsid[] = "@(#)getcap.c   8.3 (Berkeley) 3/25/94";
 #else
-__RCSID("$NetBSD: getcap.c,v 1.28 1999/03/23 02:58:50 abs Exp $");
+__RCSID("$NetBSD: getcap.c,v 1.29 1999/03/29 09:27:29 abs Exp $");
 #endif
 #endif /* LIBC_SCCS and not lint */
 
@@ -120,8 +120,8 @@
                *dest++ = *source++; /* Do not check first field */
                while (*source == ':') {
                        check=source+1;
-                       while (*check && (isspace(*check) ||
-                           (*check=='\\' && isspace(check[1]))) )
+                       while (*check && (isspace((unsigned char)*check) ||
+                           (*check=='\\' && isspace((unsigned char)check[1]))))
                                ++check;
                        if( *check == ':' )
                                source=check;



Home | Main Index | Thread Index | Old Index