* Move setuidCleanup() to libutil.
This commit is contained in:
parent
f76fdb6d42
commit
a82d80ddeb
5 changed files with 23 additions and 27 deletions
|
@ -1,22 +0,0 @@
|
|||
/* Code shared between libmain and nix-setuid-helper. */
|
||||
|
||||
extern char * * environ;
|
||||
|
||||
|
||||
namespace nix {
|
||||
|
||||
|
||||
void setuidCleanup()
|
||||
{
|
||||
/* Don't trust the environment. */
|
||||
environ = 0;
|
||||
|
||||
/* Make sure that file descriptors 0, 1, 2 are open. */
|
||||
for (int fd = 0; fd <= 2; ++fd) {
|
||||
struct stat st;
|
||||
if (fstat(fd, &st) == -1) abort();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
|
@ -14,9 +14,6 @@
|
|||
#include <aterm2.h>
|
||||
|
||||
|
||||
#include "setuid-common.hh"
|
||||
|
||||
|
||||
namespace nix {
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue