[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.50 and 1.51

version 1.50, 2013/11/22 15:47:35 version 1.51, 2016/10/21 16:12:38
Line 269 
Line 269 
         LstNode ln;          LstNode ln;
   
         for (ln = Lst_First(create); ln != NULL; ln = Lst_Adv(ln)) {          for (ln = Lst_First(create); ln != NULL; ln = Lst_Adv(ln)) {
                 char *s = (char *)Lst_Datum(ln);                  char *s = Lst_Datum(ln);
                 if (Str_Matchi(s, strchr(s, '\0'), arg->s, arg->e))                  if (Str_Matchi(s, strchr(s, '\0'), arg->s, arg->e))
                         return true;                          return true;
         }          }

Legend:
Removed from v.1.50  
changed lines
  Added in v.1.51