[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.11 and 1.12

version 1.11, 2004/07/20 03:50:25 version 1.12, 2006/12/26 20:59:01
Line 163 
Line 163 
                 (void)sigprocmask(SIG_BLOCK, &fullset, &oset);                  (void)sigprocmask(SIG_BLOCK, &fullset, &oset);
                 entry = fts_read(tree);                  entry = fts_read(tree);
                 (void)sigprocmask(SIG_SETMASK, &oset, NULL);                  (void)sigprocmask(SIG_SETMASK, &oset, NULL);
                 if (entry == NULL)                  if (entry == NULL) {
                           if (errno)
                                   err(1, "fts_read");
                         break;                          break;
                   }
   
                 switch (entry->fts_info) {                  switch (entry->fts_info) {
                 case FTS_D:                  case FTS_D:

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12