mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.pposix: Do not attempt to assign to stdio variables [pedantic]
Fixes build on gcc 6.4.0 See also https://stackoverflow.com/a/586416
This commit is contained in:
parent
faffced19d
commit
53c20a796e
1 changed files with 3 additions and 3 deletions
|
@ -111,9 +111,9 @@ static int lc_daemonize(lua_State *L) {
|
|||
}
|
||||
|
||||
/* Make sure accidental use of FDs 0, 1, 2 don't cause weirdness */
|
||||
stdin = freopen("/dev/null", "r", stdin);
|
||||
stdout = freopen("/dev/null", "w", stdout);
|
||||
stderr = freopen("/dev/null", "w", stderr);
|
||||
freopen("/dev/null", "r", stdin);
|
||||
freopen("/dev/null", "w", stdout);
|
||||
freopen("/dev/null", "w", stderr);
|
||||
|
||||
/* Final fork, use it wisely */
|
||||
if(fork()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue