summaryrefslogtreecommitdiff
path: root/usr.sbin/dhcpd/sync.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/dhcpd/sync.c')
-rw-r--r--usr.sbin/dhcpd/sync.c31
1 files changed, 13 insertions, 18 deletions
diff --git a/usr.sbin/dhcpd/sync.c b/usr.sbin/dhcpd/sync.c
index 3418559492b..30c097cd04a 100644
--- a/usr.sbin/dhcpd/sync.c
+++ b/usr.sbin/dhcpd/sync.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sync.c,v 1.16 2015/01/16 06:40:16 deraadt Exp $ */
+/* $OpenBSD: sync.c,v 1.17 2016/02/06 23:50:10 krw Exp $ */
/*
* Copyright (c) 2008 Bob Beck <beck@openbsd.org>
@@ -17,33 +17,28 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include <sys/stdint.h>
-#include <sys/file.h>
-#include <sys/wait.h>
-#include <sys/socket.h>
-#include <sys/resource.h>
-#include <sys/uio.h>
+#include <sys/types.h>
#include <sys/ioctl.h>
#include <sys/queue.h>
-
+#include <sys/socket.h>
#include <net/if.h>
-#include <netinet/in.h>
+
#include <arpa/inet.h>
-#include <err.h>
+#include <netinet/in.h>
+
+#include <openssl/hmac.h>
+
#include <errno.h>
-#include <pwd.h>
-#include <stdio.h>
-#include <stdlib.h>
+#include <netdb.h>
+#include <sha1.h>
#include <string.h>
+#include <syslog.h>
#include <unistd.h>
-#include <sha1.h>
-
-#include <netdb.h>
-
-#include <openssl/hmac.h>
+#include "dhcp.h"
+#include "tree.h"
#include "dhcpd.h"
#include "sync.h"