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

Diff for /src/usr.bin/find/function.c between version 1.26 and 1.27

version 1.26, 2003/06/03 02:56:08 version 1.27, 2003/06/10 22:20:46
Line 270 
Line 270 
 }  }
   
 PLAN *  PLAN *
 c_depth()  c_depth(void)
 {  {
         isdepth = 1;          isdepth = 1;
   
Line 312 
Line 312 
 }  }
   
 PLAN *  PLAN *
 c_empty()  c_empty(void)
 {  {
         ftsoptions &= ~FTS_NOSTAT;          ftsoptions &= ~FTS_NOSTAT;
   
Line 597 
Line 597 
  *      basis.   *      basis.
  */   */
 PLAN *  PLAN *
 c_follow()  c_follow(void)
 {  {
         ftsoptions &= ~FTS_PHYSICAL;          ftsoptions &= ~FTS_PHYSICAL;
         ftsoptions |= FTS_LOGICAL;          ftsoptions |= FTS_LOGICAL;
Line 807 
Line 807 
 }  }
   
 PLAN *  PLAN *
 c_ls()  c_ls(void)
 {  {
         ftsoptions &= ~FTS_NOSTAT;          ftsoptions &= ~FTS_NOSTAT;
         isoutput = 1;          isoutput = 1;
Line 1097 
Line 1097 
 }  }
   
 PLAN *  PLAN *
 c_nogroup()  c_nogroup(void)
 {  {
         ftsoptions &= ~FTS_NOSTAT;          ftsoptions &= ~FTS_NOSTAT;
   
Line 1119 
Line 1119 
 }  }
   
 PLAN *  PLAN *
 c_nouser()  c_nouser(void)
 {  {
         ftsoptions &= ~FTS_NOSTAT;          ftsoptions &= ~FTS_NOSTAT;
   
Line 1225 
Line 1225 
 }  }
   
 PLAN *  PLAN *
 c_print()  c_print(void)
 {  {
         isoutput = 1;          isoutput = 1;
   
Line 1233 
Line 1233 
 }  }
   
 PLAN *  PLAN *
 c_print0()  c_print0(void)
 {  {
         isoutput = 1;          isoutput = 1;
   
Line 1257 
Line 1257 
 }  }
   
 PLAN *  PLAN *
 c_prune()  c_prune(void)
 {  {
         return (palloc(N_PRUNE, f_prune));          return (palloc(N_PRUNE, f_prune));
 }  }
Line 1408 
Line 1408 
  *      different device ID (st_dev, see stat() S5.6.2 [POSIX.1])   *      different device ID (st_dev, see stat() S5.6.2 [POSIX.1])
  */   */
 PLAN *  PLAN *
 c_xdev()  c_xdev(void)
 {  {
         ftsoptions |= FTS_XDEV;          ftsoptions |= FTS_XDEV;
   
Line 1439 
Line 1439 
  * to a N_EXPR node containing the expression and the ')' node is discarded.   * to a N_EXPR node containing the expression and the ')' node is discarded.
  */   */
 PLAN *  PLAN *
 c_openparen()  c_openparen(void)
 {  {
         return (palloc(N_OPENPAREN, (int (*)())-1));          return (palloc(N_OPENPAREN, (int (*)())-1));
 }  }
   
 PLAN *  PLAN *
 c_closeparen()  c_closeparen(void)
 {  {
         return (palloc(N_CLOSEPAREN, (int (*)())-1));          return (palloc(N_CLOSEPAREN, (int (*)())-1));
 }  }
Line 1469 
Line 1469 
 }  }
   
 PLAN *  PLAN *
 c_not()  c_not(void)
 {  {
         return (palloc(N_NOT, f_not));          return (palloc(N_NOT, f_not));
 }  }
Line 1500 
Line 1500 
 }  }
   
 PLAN *  PLAN *
 c_or()  c_or(void)
 {  {
         return (palloc(N_OR, f_or));          return (palloc(N_OR, f_or));
 }  }

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