=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/arch.c,v retrieving revision 1.18 retrieving revision 1.19 diff -c -r1.18 -r1.19 *** src/usr.bin/make/arch.c 1999/12/16 17:27:18 1.18 --- src/usr.bin/make/arch.c 1999/12/18 02:11:26 1.19 *************** *** 1,4 **** ! /* $OpenBSD: arch.c,v 1.18 1999/12/16 17:27:18 espie Exp $ */ /* $NetBSD: arch.c,v 1.17 1996/11/06 17:58:59 christos Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: arch.c,v 1.19 1999/12/18 02:11:26 espie Exp $ */ /* $NetBSD: arch.c,v 1.17 1996/11/06 17:58:59 christos Exp $ */ /* *************** *** 43,49 **** #if 0 static char sccsid[] = "@(#)arch.c 8.2 (Berkeley) 1/2/94"; #else ! static char rcsid[] = "$OpenBSD: arch.c,v 1.18 1999/12/16 17:27:18 espie Exp $"; #endif #endif /* not lint */ --- 43,49 ---- #if 0 static char sccsid[] = "@(#)arch.c 8.2 (Berkeley) 1/2/94"; #else ! static char rcsid[] = "$OpenBSD: arch.c,v 1.19 1999/12/18 02:11:26 espie Exp $"; #endif #endif /* not lint */ *************** *** 359,365 **** */ free(buf); } else if (Dir_HasWildcards(memName)) { ! Lst members = Lst_Init(FALSE); char *member; Dir_Expand(memName, dirSearchPath, members); --- 359,365 ---- */ free(buf); } else if (Dir_HasWildcards(memName)) { ! Lst members = Lst_Init(); char *member; Dir_Expand(memName, dirSearchPath, members); *************** *** 1221,1227 **** void Arch_Init () { ! archives = Lst_Init (FALSE); } --- 1221,1227 ---- void Arch_Init () { ! archives = Lst_Init(); }