=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/arch.c,v retrieving revision 1.55 retrieving revision 1.56 diff -c -r1.55 -r1.56 *** src/usr.bin/make/arch.c 2006/01/20 23:10:19 1.55 --- src/usr.bin/make/arch.c 2007/03/20 03:50:39 1.56 *************** *** 1,5 **** /* $OpenPackages$ */ ! /* $OpenBSD: arch.c,v 1.55 2006/01/20 23:10:19 espie Exp $ */ /* $NetBSD: arch.c,v 1.17 1996/11/06 17:58:59 christos Exp $ */ /* --- 1,5 ---- /* $OpenPackages$ */ ! /* $OpenBSD: arch.c,v 1.56 2007/03/20 03:50:39 tedu Exp $ */ /* $NetBSD: arch.c,v 1.17 1996/11/06 17:58:59 christos Exp $ */ /* *************** *** 261,267 **** * a close paren). */ bool doSubst = false; /* true if need to substitute in memberName */ ! while (*cp != '\0' && *cp != ')' && isspace(*cp)) cp++; memberName = cp; while (*cp != '\0' && *cp != ')' && !isspace(*cp)) { --- 261,267 ---- * a close paren). */ bool doSubst = false; /* true if need to substitute in memberName */ ! while (isspace(*cp)) cp++; memberName = cp; while (*cp != '\0' && *cp != ')' && !isspace(*cp)) { *************** *** 383,389 **** * entrance to the loop, cp is guaranteed to point at a ')') */ do { cp++; ! } while (*cp != '\0' && isspace(*cp)); *linePtr = cp; return true; --- 383,389 ---- * entrance to the loop, cp is guaranteed to point at a ')') */ do { cp++; ! } while (isspace(*cp)); *linePtr = cp; return true;