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

Diff for /src/usr.bin/make/varmodifiers.c between version 1.28 and 1.29

version 1.28, 2011/07/29 13:39:00 version 1.29, 2011/07/30 21:02:13
Line 629 
Line 629 
         }          }
         Buf_Init(&buf, 0);          Buf_Init(&buf, 0);
         for (cp2 = cp+1;; cp2++) {          for (cp2 = cp+1;; cp2++) {
                 if (((*cp2 == ':' && cp2[1] != endc) || *cp2 == endc) &&                  if ((*cp2 == ':' || *cp2 == endc) && cnt == 0)
                     cnt == 0)  
                         break;                          break;
                 if (*cp2 == '\0') {                  if (*cp2 == '\0') {
                         Buf_Destroy(&buf);                          Buf_Destroy(&buf);

Legend:
Removed from v.1.28  
changed lines
  Added in v.1.29