--- src/usr.bin/make/dir.c 2004/12/16 23:22:15 1.20 +++ src/usr.bin/make/dir.c 2004/12/16 23:24:09 1.21 @@ -208,8 +208,8 @@ void Dir_Init(void) { - dirSearchPath = Lst_Init(FALSE); - openDirectories = Lst_Init(FALSE); + dirSearchPath = Lst_Init(); + openDirectories = Lst_Init(); Hash_InitTable(&mtimes, 0); } @@ -620,7 +620,7 @@ Dir_Expand(char *word, Lst path, Lst exp if (*dp == '/') *dp = '\0'; - path = Lst_Init(FALSE); + path = Lst_Init(); Dir_AddDir(path, dirpath); DirExpandInt(cp + 1, path, expansions);