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

Diff for /src/usr.bin/uniq/uniq.c between version 1.25 and 1.26

version 1.25, 2017/12/21 10:05:59 version 1.26, 2017/12/24 00:11:43
Line 152 
Line 152 
                 }                  }
   
                 /* If different, print; set previous to new value. */                  /* If different, print; set previous to new value. */
                 if ((!iflag && strcmp(t1, t2)) || strcasecmp(t1, t2)) {                  if ((iflag ? strcasecmp : strcmp)(t1, t2)) {
                         show(ofp, prevline);                          show(ofp, prevline);
                         t1 = prevline;                          t1 = prevline;
                         prevline = thisline;                          prevline = thisline;

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.26