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

Diff for /src/usr.bin/xstr/Attic/xstr.c between version 1.16 and 1.17

version 1.16, 2009/10/27 23:59:50 version 1.17, 2011/04/06 11:36:26
Line 311 
Line 311 
         while (--rmdr > 0 && (c = xgetc(file)) != 0 && c != EOF)          while (--rmdr > 0 && (c = xgetc(file)) != 0 && c != EOF)
                 *buf++ = c;                  *buf++ = c;
         *buf++ = 0;          *buf++ = 0;
         return ((feof(file) || ferror(file)) ? NULL : 1);          return ((feof(file) || ferror(file)) ? 0 : 1);
 }  }
   
 int  int

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