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

Diff for /src/usr.bin/file/Attic/sandbox.c between version 1.1 and 1.2

version 1.1, 2015/04/27 13:52:17 version 1.2, 2015/04/29 06:37:14
Line 117 
Line 117 
                 return (sandbox_child(user));                  return (sandbox_child(user));
         }          }
   
         do          do {
                 pid = waitpid(pid, &status, WUNTRACED);                  pid = waitpid(pid, &status, WUNTRACED);
         while (pid == -1 && errno == EINTR);          } while (pid == -1 && errno == EINTR);
         if (!WIFSTOPPED(status))          if (!WIFSTOPPED(status))
                 errx(1, "child not stopped");                  errx(1, "child not stopped");
   

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