[BACK]Return to dir.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / make

Diff for /src/usr.bin/make/dir.c between version 1.9 and 1.10

version 1.9, 1999/10/05 22:06:23 version 1.10, 1999/12/18 02:11:26
Line 215 
Line 215 
 void  void
 Dir_Init ()  Dir_Init ()
 {  {
     dirSearchPath = Lst_Init (FALSE);      dirSearchPath = Lst_Init();
     openDirectories = Lst_Init (FALSE);      openDirectories = Lst_Init();
     Hash_InitTable(&mtimes, 0);      Hash_InitTable(&mtimes, 0);
   
     /*      /*
Line 633 
Line 633 
                         char *dp = &dirpath[strlen(dirpath) - 1];                          char *dp = &dirpath[strlen(dirpath) - 1];
                         if (*dp == '/')                          if (*dp == '/')
                             *dp = '\0';                              *dp = '\0';
                         path = Lst_Init(FALSE);                          path = Lst_Init();
                         Dir_AddDir(path, dirpath);                          Dir_AddDir(path, dirpath);
                         DirExpandInt(cp+1, path, expansions);                          DirExpandInt(cp+1, path, expansions);
                         Lst_Destroy(path, NOFREE);                          Lst_Destroy(path, NOFREE);

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10