From 2b6be58a74cf5cf6b9d8e3fd7c1d315dd21a0e5f Mon Sep 17 00:00:00 2001 From: kuriyama Date: Tue, 11 Jun 2002 08:13:54 +0000 Subject: Fix about check_by_ssh plugin and fcntl(). PR: ports/31352, ports/39018 Submitted by: Stanley.Hopcroft@IPAustralia.Gov.AU (via maintainer) --- net/netsaint/Makefile | 1 + net/netsaint/files/patch-ba | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 net/netsaint/files/patch-ba (limited to 'net') diff --git a/net/netsaint/Makefile b/net/netsaint/Makefile index f3d3d1593e0a..85000a689d1f 100644 --- a/net/netsaint/Makefile +++ b/net/netsaint/Makefile @@ -7,6 +7,7 @@ PORTNAME= netsaint PORTVERSION= 0.0.7 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= net MASTER_SITES= http://netsaint.sourceforge.net/download/ \ diff --git a/net/netsaint/files/patch-ba b/net/netsaint/files/patch-ba new file mode 100644 index 000000000000..c4b47eabff35 --- /dev/null +++ b/net/netsaint/files/patch-ba @@ -0,0 +1,20 @@ +--- 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; + } + -- cgit