summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/bgpd/rde_rib.c3
-rw-r--r--usr.sbin/dhcpd/db.c3
-rw-r--r--usr.sbin/dhcpd/dhcpd.c3
-rw-r--r--usr.sbin/dhcpd/dispatch.c3
-rw-r--r--usr.sbin/dhcpd/parse.c3
-rw-r--r--usr.sbin/dhcrelay/dhcrelay.c3
-rw-r--r--usr.sbin/dhcrelay/dispatch.c3
-rw-r--r--usr.sbin/ifstated/log.c3
8 files changed, 16 insertions, 8 deletions
diff --git a/usr.sbin/bgpd/rde_rib.c b/usr.sbin/bgpd/rde_rib.c
index fd2fb224e22..a759245c2a6 100644
--- a/usr.sbin/bgpd/rde_rib.c
+++ b/usr.sbin/bgpd/rde_rib.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rde_rib.c,v 1.142 2015/03/14 03:52:42 claudio Exp $ */
+/* $OpenBSD: rde_rib.c,v 1.143 2016/08/27 01:26:22 guenther Exp $ */
/*
* Copyright (c) 2003, 2004 Claudio Jeker <claudio@openbsd.org>
@@ -22,6 +22,7 @@
#include <stdlib.h>
#include <string.h>
#include <siphash.h>
+#include <time.h>
#include "bgpd.h"
#include "rde.h"
diff --git a/usr.sbin/dhcpd/db.c b/usr.sbin/dhcpd/db.c
index cc29ad692e2..7f401403b37 100644
--- a/usr.sbin/dhcpd/db.c
+++ b/usr.sbin/dhcpd/db.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: db.c,v 1.15 2016/02/06 23:50:10 krw Exp $ */
+/* $OpenBSD: db.c,v 1.16 2016/08/27 01:26:22 guenther Exp $ */
/*
* Persistent database management routines for DHCPD.
@@ -51,6 +51,7 @@
#include <fcntl.h>
#include <stdio.h>
+#include <time.h>
#include <unistd.h>
#include "dhcp.h"
diff --git a/usr.sbin/dhcpd/dhcpd.c b/usr.sbin/dhcpd/dhcpd.c
index d137d0e39b7..d109a4a5b97 100644
--- a/usr.sbin/dhcpd/dhcpd.c
+++ b/usr.sbin/dhcpd/dhcpd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dhcpd.c,v 1.51 2016/04/27 10:16:10 mestre Exp $ */
+/* $OpenBSD: dhcpd.c,v 1.52 2016/08/27 01:26:22 guenther Exp $ */
/*
* Copyright (c) 2004 Henning Brauer <henning@cvs.openbsd.org>
@@ -54,6 +54,7 @@
#include <stdlib.h>
#include <string.h>
#include <syslog.h>
+#include <time.h>
#include <unistd.h>
#include "dhcp.h"
diff --git a/usr.sbin/dhcpd/dispatch.c b/usr.sbin/dhcpd/dispatch.c
index 08232b313db..aa079215d52 100644
--- a/usr.sbin/dhcpd/dispatch.c
+++ b/usr.sbin/dhcpd/dispatch.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dispatch.c,v 1.36 2016/02/06 23:50:10 krw Exp $ */
+/* $OpenBSD: dispatch.c,v 1.37 2016/08/27 01:26:22 guenther Exp $ */
/*
* Copyright (c) 1995, 1996, 1997, 1998, 1999
@@ -58,6 +58,7 @@
#include <stdlib.h>
#include <string.h>
#include <syslog.h>
+#include <time.h>
#include <unistd.h>
#include "dhcp.h"
diff --git a/usr.sbin/dhcpd/parse.c b/usr.sbin/dhcpd/parse.c
index 18852ce868b..615df5ae8ce 100644
--- a/usr.sbin/dhcpd/parse.c
+++ b/usr.sbin/dhcpd/parse.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.c,v 1.20 2016/02/06 23:50:10 krw Exp $ */
+/* $OpenBSD: parse.c,v 1.21 2016/08/27 01:26:22 guenther Exp $ */
/* Common parser code for dhcpd and dhclient. */
@@ -52,6 +52,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <time.h>
#include "dhcp.h"
#include "tree.h"
diff --git a/usr.sbin/dhcrelay/dhcrelay.c b/usr.sbin/dhcrelay/dhcrelay.c
index b44f3835561..22630a8878e 100644
--- a/usr.sbin/dhcrelay/dhcrelay.c
+++ b/usr.sbin/dhcrelay/dhcrelay.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dhcrelay.c,v 1.39 2016/02/07 00:49:28 krw Exp $ */
+/* $OpenBSD: dhcrelay.c,v 1.40 2016/08/27 01:26:22 guenther Exp $ */
/*
* Copyright (c) 2004 Henning Brauer <henning@cvs.openbsd.org>
@@ -55,6 +55,7 @@
#include <stdlib.h>
#include <string.h>
#include <syslog.h>
+#include <time.h>
#include <unistd.h>
#include "dhcp.h"
diff --git a/usr.sbin/dhcrelay/dispatch.c b/usr.sbin/dhcrelay/dispatch.c
index 24caa1f45d5..e6d734d80e6 100644
--- a/usr.sbin/dhcrelay/dispatch.c
+++ b/usr.sbin/dhcrelay/dispatch.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dispatch.c,v 1.10 2016/02/07 00:49:28 krw Exp $ */
+/* $OpenBSD: dispatch.c,v 1.11 2016/08/27 01:26:22 guenther Exp $ */
/*
* Copyright 2004 Henning Brauer <henning@openbsd.org>
@@ -57,6 +57,7 @@
#include <stdlib.h>
#include <string.h>
#include <syslog.h>
+#include <time.h>
#include <unistd.h>
#include "dhcp.h"
diff --git a/usr.sbin/ifstated/log.c b/usr.sbin/ifstated/log.c
index f9148d84160..6c49b715b73 100644
--- a/usr.sbin/ifstated/log.c
+++ b/usr.sbin/ifstated/log.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: log.c,v 1.1 2007/10/25 06:03:31 pyr Exp $ */
+/* $OpenBSD: log.c,v 1.2 2016/08/27 01:26:22 guenther Exp $ */
/*
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -21,6 +21,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <time.h>
#include <syslog.h>
void log_init(int);