svn commit: r313231 - stable/11/libexec/tftpd
Ngie Cooper
ngie at FreeBSD.org
Sat Feb 4 16:55:48 UTC 2017
Author: ngie
Date: Sat Feb 4 16:55:46 2017
New Revision: 313231
URL: https://svnweb.freebsd.org/changeset/base/313231
Log:
MFC r311473:
Conditionalize all code that uses tcpd.h behind `LIBWRAP` guard
This will allow the code to stand by itself without libwrap
Modified:
stable/11/libexec/tftpd/Makefile
stable/11/libexec/tftpd/tftpd.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/libexec/tftpd/Makefile
==============================================================================
--- stable/11/libexec/tftpd/Makefile Sat Feb 4 16:54:44 2017 (r313230)
+++ stable/11/libexec/tftpd/Makefile Sat Feb 4 16:55:46 2017 (r313231)
@@ -1,12 +1,17 @@
# @(#)Makefile 8.1 (Berkeley) 6/4/93
# $FreeBSD$
+.include <src.opts.mk>
+
PROG= tftpd
MAN= tftpd.8
SRCS= tftp-file.c tftp-io.c tftp-options.c tftp-transfer.c tftp-utils.c
SRCS+= tftpd.c
WFORMAT=0
+.if ${MK_TCP_WRAPPERS} != "no"
+CFLAGS+= -DLIBWRAP
LIBADD= wrap
+.endif
.include <bsd.prog.mk>
Modified: stable/11/libexec/tftpd/tftpd.c
==============================================================================
--- stable/11/libexec/tftpd/tftpd.c Sat Feb 4 16:54:44 2017 (r313230)
+++ stable/11/libexec/tftpd/tftpd.c Sat Feb 4 16:55:46 2017 (r313231)
@@ -66,7 +66,6 @@ __FBSDID("$FreeBSD$");
#include <stdlib.h>
#include <string.h>
#include <syslog.h>
-#include <tcpd.h>
#include <unistd.h>
#include "tftp-file.h"
@@ -75,6 +74,10 @@ __FBSDID("$FreeBSD$");
#include "tftp-transfer.h"
#include "tftp-options.h"
+#ifdef LIBWRAP
+#include <tcpd.h>
+#endif
+
static void tftp_wrq(int peer, char *, ssize_t);
static void tftp_rrq(int peer, char *, ssize_t);
@@ -281,6 +284,7 @@ main(int argc, char *argv[])
}
}
+#ifdef LIBWRAP
/*
* See if the client is allowed to talk to me.
* (This needs to be done before the chroot())
@@ -329,6 +333,7 @@ main(int argc, char *argv[])
"Full access allowed"
"in /etc/hosts.allow");
}
+#endif
/*
* Since we exit here, we should do that only after the above
More information about the svn-src-stable
mailing list