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

Diff for /src/usr.bin/mg/buffer.c between version 1.6 and 1.7

version 1.6, 2001/05/04 21:47:41 version 1.7, 2001/05/04 22:00:35
Line 390 
Line 390 
   
         bp = bheadp;          bp = bheadp;
         while (bp != NULL) {          while (bp != NULL) {
                 if (fncmp(bname, bp->b_bname) == 0)                  if (strcmp(bname, bp->b_bname) == 0)
                         return bp;                          return bp;
                 bp = bp->b_bufp;                  bp = bp->b_bufp;
         }          }

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7