diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 2000-04-30 08:24:49 +0000 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 2000-04-30 08:24:49 +0000 |
commit | 74f1274fa6e2f8de24d9dfe01f19f56e67537281 (patch) | |
tree | e4ad3ec3f0ca045dbf08195f02786524b1cd95ba /security/xinetd | |
parent | 932a50a504df9b19fbbb0d4ff86fa0813078399a (diff) | |
download | ports-74f1274fa6e2f8de24d9dfe01f19f56e67537281.tar.gz ports-74f1274fa6e2f8de24d9dfe01f19f56e67537281.zip |
Notes
Diffstat (limited to 'security/xinetd')
-rw-r--r-- | security/xinetd/Makefile | 2 | ||||
-rw-r--r-- | security/xinetd/files/patch-af | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/security/xinetd/Makefile b/security/xinetd/Makefile index c4e1836b5ed2..1dc4550c861d 100644 --- a/security/xinetd/Makefile +++ b/security/xinetd/Makefile @@ -16,7 +16,7 @@ MAINTAINER= vanilla@FreeBSD.org FETCH_BEFORE_ARGS= -b GNU_CONFIGURE= yes ALL_TARGET= build -CONFIGURE_ARGS= --with-loadavg --with-libwrap +CONFIGURE_ARGS= --with-loadavg --with-libwrap --with-inet6 MAN5= xinetd.conf.5 MAN8= xinetd.8 xinetd.log.8 diff --git a/security/xinetd/files/patch-af b/security/xinetd/files/patch-af new file mode 100644 index 000000000000..46f406a3c1b5 --- /dev/null +++ b/security/xinetd/files/patch-af @@ -0,0 +1,11 @@ +--- xinetd/child.c.orig Sun Apr 30 16:13:07 2000 ++++ xinetd/child.c Sun Apr 30 16:13:47 2000 +@@ -320,7 +320,7 @@ + "(%s service) %s", program_name, SC_ID( scp ) ) ; + + #ifdef INET6 +- if ( SC_ACCEPTS_CONNECTIONS( scp ) && !IN6_IS_ADDR_UNSPECIFIED(sinp) ) ++ if ( SC_ACCEPTS_CONNECTIONS( scp ) && !IN6_IS_ADDR_UNSPECIFIED(&(sinp->sin6_addr)) ) + strx_print( INT_NULL, &name[ len ], namelen - len, + " %s" , xntoa( *sinp ) ) ; + #else |