Browse Source

fixed #724

pull/750/head
orignal 8 years ago
parent
commit
5babfb0f1e
  1. 8
      DaemonLinux.cpp

8
DaemonLinux.cpp

@ -76,12 +76,10 @@ namespace i2p
return false; return false;
} }
#if !defined(__OpenBSD__)
// point std{in,out,err} descriptors to /dev/null // point std{in,out,err} descriptors to /dev/null
stdin = freopen("/dev/null", "r", stdin); freopen("/dev/null", "r", stdin);
stdout = freopen("/dev/null", "w", stdout); freopen("/dev/null", "w", stdout);
stderr = freopen("/dev/null", "w", stderr); freopen("/dev/null", "w", stderr);
#endif
} }
// set proc limits // set proc limits

Loading…
Cancel
Save