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

Diff for /src/usr.bin/make/cond.c between version 1.17 and 1.18

version 1.17, 2000/06/10 01:41:05 version 1.18, 2000/06/17 14:38:14
Line 339 
Line 339 
     Boolean result;      Boolean result;
   
     arg[argLen] = '\0';      arg[argLen] = '\0';
     if (Lst_Find(create, CondStrMatch, arg) == NULL) {      if (Lst_Find(&create, CondStrMatch, arg) == NULL) {
         result = FALSE;          result = FALSE;
     } else {      } else {
         result = TRUE;          result = TRUE;
Line 371 
Line 371 
     char    *path;      char    *path;
   
     arg[argLen] = '\0';      arg[argLen] = '\0';
     path = Dir_FindFile(arg, dirSearchPath);      path = Dir_FindFile(arg, &dirSearchPath);
     if (path != (char *)NULL) {      if (path != (char *)NULL) {
         result = TRUE;          result = TRUE;
         free(path);          free(path);

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.18