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

Diff for /src/usr.bin/whatis/Attic/whatis.c between version 1.9 and 1.10

version 1.9, 2003/06/10 22:20:54 version 1.10, 2005/10/17 19:04:20
Line 108 
Line 108 
         else {          else {
                 config(conffile);                  config(conffile);
                 ep = (tp = getlist("_whatdb")) == NULL ?                  ep = (tp = getlist("_whatdb")) == NULL ?
                    NULL : tp->list.tqh_first;                     NULL : TAILQ_FIRST(&tp->list);
                 for (; ep != NULL; ep = ep->q.tqe_next)                  for (; ep != NULL; ep = TAILQ_NEXT(ep, q))
                         whatis(argv, ep->s, 0);                          whatis(argv, ep->s, 0);
         }          }
   

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10