diff options
Diffstat (limited to 'net-mgmt/netsaint/files/patch-ba')
-rw-r--r-- | net-mgmt/netsaint/files/patch-ba | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/net-mgmt/netsaint/files/patch-ba b/net-mgmt/netsaint/files/patch-ba deleted file mode 100644 index c4b47eabff35..000000000000 --- a/net-mgmt/netsaint/files/patch-ba +++ /dev/null @@ -1,20 +0,0 @@ ---- base/utils.c.orig Thu Feb 21 02:47:12 2002 -+++ base/utils.c Tue Jun 11 09:21:53 2002 -@@ -1884,6 +1884,17 @@ - val|=FD_CLOEXEC; - fcntl(lockfile,F_SETFD,val); - -+ /* close existing stdin, stdout, stderr */ -+ close(0); -+ close(1); -+ close(2); -+ -+ /* THIS HAS TO BE DONE TO AVOID PROBLEMS WITH STDERR BEING REDIRECTED TO SERVICE MESSAGE PIPE! */ -+ /* re-open stdin, stdout, stderr with known values */ -+ open("/dev/null",O_RDONLY); -+ open("/dev/null",O_WRONLY); -+ open("/dev/null",O_WRONLY); -+ - return OK; - } - |