[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.29 and 1.30

version 1.29, 2011/07/30 21:02:13 version 1.30, 2011/08/16 14:18:25
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 == endc) && cnt == 0)                  if (((*cp2 == ':' && cp2[1] != endc) || *cp2 == endc) &&
                       cnt == 0)
                         break;                          break;
                 if (*cp2 == '\0') {                  if (*cp2 == '\0') {
                         Buf_Destroy(&buf);                          Buf_Destroy(&buf);

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