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

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

version 1.25, 2009/12/09 13:59:43 version 1.26, 2009/12/20 16:15:26
Line 75 
Line 75 
                 switch(ch) {                  switch(ch) {
                 case 'H':                  case 'H':
                         ftsoptions |= FTS_COMFOLLOW;                          ftsoptions |= FTS_COMFOLLOW;
                           ftsoptions |= FTS_PHYSICAL;
                           ftsoptions &= ~FTS_LOGICAL;
                         break;                          break;
                 case 'd':                  case 'd':
                         isdepth = 1;                          isdepth = 1;
Line 84 
Line 86 
                         break;                          break;
                 case 'h':                  case 'h':
                 case 'L':                  case 'L':
                           ftsoptions &= ~FTS_COMFOLLOW;
                         ftsoptions &= ~FTS_PHYSICAL;                          ftsoptions &= ~FTS_PHYSICAL;
                         ftsoptions |= FTS_LOGICAL;                          ftsoptions |= FTS_LOGICAL;
                         break;                          break;

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