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

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

version 1.28, 2003/10/21 23:57:04 version 1.29, 2006/10/10 21:38:16
Line 347 
Line 347 
   
         for (pass = 1; pass <= 2; pass++) {          for (pass = 1; pass <= 2; pass++) {
             nn = 0;              nn = 0;
             while (fgets(buffer, sizeof(buffer), fp) != 0) {              while (fgets(buffer, sizeof(buffer), fp) != NULL) {
                 if ((s = stripped(buffer)) != 0) {                  if ((s = stripped(buffer)) != 0) {
                     if (dst != 0)                      if (dst != 0)
                         dst[nn] = s;                          dst[nn] = s;

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