=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/cond.c,v retrieving revision 1.17 retrieving revision 1.18 diff -c -r1.17 -r1.18 *** src/usr.bin/make/cond.c 2000/06/10 01:41:05 1.17 --- src/usr.bin/make/cond.c 2000/06/17 14:38:14 1.18 *************** *** 1,4 **** ! /* $OpenBSD: cond.c,v 1.17 2000/06/10 01:41:05 espie Exp $ */ /* $NetBSD: cond.c,v 1.7 1996/11/06 17:59:02 christos Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: cond.c,v 1.18 2000/06/17 14:38:14 espie Exp $ */ /* $NetBSD: cond.c,v 1.7 1996/11/06 17:59:02 christos Exp $ */ /* *************** *** 43,49 **** #if 0 static char sccsid[] = "@(#)cond.c 8.2 (Berkeley) 1/2/94"; #else ! static char rcsid[] = "$OpenBSD: cond.c,v 1.17 2000/06/10 01:41:05 espie Exp $"; #endif #endif /* not lint */ --- 43,49 ---- #if 0 static char sccsid[] = "@(#)cond.c 8.2 (Berkeley) 1/2/94"; #else ! static char rcsid[] = "$OpenBSD: cond.c,v 1.18 2000/06/17 14:38:14 espie Exp $"; #endif #endif /* not lint */ *************** *** 339,345 **** Boolean result; arg[argLen] = '\0'; ! if (Lst_Find(create, CondStrMatch, arg) == NULL) { result = FALSE; } else { result = TRUE; --- 339,345 ---- Boolean result; arg[argLen] = '\0'; ! if (Lst_Find(&create, CondStrMatch, arg) == NULL) { result = FALSE; } else { result = TRUE; *************** *** 371,377 **** char *path; arg[argLen] = '\0'; ! path = Dir_FindFile(arg, dirSearchPath); if (path != (char *)NULL) { result = TRUE; free(path); --- 371,377 ---- char *path; arg[argLen] = '\0'; ! path = Dir_FindFile(arg, &dirSearchPath); if (path != (char *)NULL) { result = TRUE; free(path);