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

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

version 1.17, 2001/05/03 13:41:11 version 1.18, 2001/05/07 22:54:53
Line 83 
Line 83 
         result[len1-1] = sep;          result[len1-1] = sep;
   
     /* copy second string plus EOS into place */      /* copy second string plus EOS into place */
     memcpy(result + len1, s2, len2 + 1);      memcpy(result + len1, s2, len2);
       result[len1+len2] = '\0';
     return result;      return result;
 }  }
   

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