summaryrefslogtreecommitdiffstats
path: root/usr.sbin/rarpd
diff options
context:
space:
mode:
authorjung <jung@openbsd.org>2015-10-26 10:08:14 +0000
committerjung <jung@openbsd.org>2015-10-26 10:08:14 +0000
commitb1014f6d7be3185d9c0119afcdcf5226a6b56f1b (patch)
treee70960888612eeae186fab838ecd311dc92773de /usr.sbin/rarpd
parentStop writing a pidfile (diff)
downloadwireguard-openbsd-b1014f6d7be3185d9c0119afcdcf5226a6b56f1b.tar.xz
wireguard-openbsd-b1014f6d7be3185d9c0119afcdcf5226a6b56f1b.zip
remove util.h include and -lutil after pidfile removal
ok deraadt
Diffstat (limited to 'usr.sbin/rarpd')
-rw-r--r--usr.sbin/rarpd/Makefile3
-rw-r--r--usr.sbin/rarpd/rarpd.c3
2 files changed, 2 insertions, 4 deletions
diff --git a/usr.sbin/rarpd/Makefile b/usr.sbin/rarpd/Makefile
index 12b5b659f23..73d76510856 100644
--- a/usr.sbin/rarpd/Makefile
+++ b/usr.sbin/rarpd/Makefile
@@ -1,9 +1,8 @@
-# $OpenBSD: Makefile,v 1.6 2003/05/15 14:52:12 itojun Exp $
+# $OpenBSD: Makefile,v 1.7 2015/10/26 10:08:14 jung Exp $
PROG= rarpd
SRCS= rarpd.c arptab.c
MAN= rarpd.8
-LDADD+= -lutil
DPADD+= ${LIBUTIL}
# Uncomment the following to require a boot file in TFTP_DIR
diff --git a/usr.sbin/rarpd/rarpd.c b/usr.sbin/rarpd/rarpd.c
index d8a2b4202c8..4cf9a0051af 100644
--- a/usr.sbin/rarpd/rarpd.c
+++ b/usr.sbin/rarpd/rarpd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rarpd.c,v 1.63 2015/10/26 09:57:55 deraadt Exp $ */
+/* $OpenBSD: rarpd.c,v 1.64 2015/10/26 10:08:14 jung Exp $ */
/* $NetBSD: rarpd.c,v 1.25 1998/04/23 02:48:33 mrg Exp $ */
/*
@@ -48,7 +48,6 @@
#include <netdb.h>
#include <arpa/inet.h>
#include <dirent.h>
-#include <util.h>
#include <poll.h>
#include <ifaddrs.h>
#include <paths.h>