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

Diff for /src/usr.bin/find/find.c between version 1.2 and 1.3

version 1.2, 1996/06/26 05:33:09 version 1.3, 1996/10/24 03:46:04
Line 149 
Line 149 
  *      take a search plan and an array of search paths and executes the plan   *      take a search plan and an array of search paths and executes the plan
  *      over all FTSENT's returned for the given search paths.   *      over all FTSENT's returned for the given search paths.
  */   */
   
   FTSENT *entry;                  /* shared with SIGINFO handler */
   
 void  void
 find_execute(plan, paths)  find_execute(plan, paths)
         PLAN *plan;             /* search plan */          PLAN *plan;             /* search plan */
         char **paths;           /* array of pathnames to traverse */          char **paths;           /* array of pathnames to traverse */
 {  {
         register FTSENT *entry;  
         PLAN *p;          PLAN *p;
   
         if (!(tree = fts_open(paths, ftsoptions, (int (*)())NULL)))          if (!(tree = fts_open(paths, ftsoptions, (int (*)())NULL)))

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3