diff options
author | Kim Alvefur <zash@zash.se> | 2012-11-11 23:48:38 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2012-11-11 23:48:38 +0100 |
commit | 20b97c9c9372fd03f9665669399065869eec0bce (patch) | |
tree | 6367ad48930ec474c7797b1f53089e0e52c684a2 /util-src | |
parent | 326bb884c8bce004961b32f00485f52c216bf5d4 (diff) | |
parent | 8f3a73f5c58b6e2ef954fc61f8ae84ae71d1ff86 (diff) | |
download | prosody-20b97c9c9372fd03f9665669399065869eec0bce.tar.gz prosody-20b97c9c9372fd03f9665669399065869eec0bce.zip |
Merge 0.9 -> trunk
Diffstat (limited to 'util-src')
-rw-r--r-- | util-src/pposix.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/util-src/pposix.c b/util-src/pposix.c index 191e276e..05303d99 100644 --- a/util-src/pposix.c +++ b/util-src/pposix.c @@ -89,6 +89,10 @@ static int lc_daemonize(lua_State *L) close(0); close(1); close(2); + /* Make sure accidental use of FDs 0, 1, 2 don't cause weirdness */ + open("/dev/null", O_RDONLY); + open("/dev/null", O_WRONLY); + open("/dev/null", O_WRONLY); /* Final fork, use it wisely */ if(fork()) |