Pull in <time.h> for one or more of gmtime, strftime, strptime, time,
authorguenther <guenther@openbsd.org>
Sat, 27 Aug 2016 01:26:22 +0000 (01:26 +0000)
committerguenther <guenther@openbsd.org>
Sat, 27 Aug 2016 01:26:22 +0000 (01:26 +0000)
timegm, and tzset

ok deraadt@

usr.sbin/bgpd/rde_rib.c
usr.sbin/dhcpd/db.c
usr.sbin/dhcpd/dhcpd.c
usr.sbin/dhcpd/dispatch.c
usr.sbin/dhcpd/parse.c
usr.sbin/dhcrelay/dhcrelay.c
usr.sbin/dhcrelay/dispatch.c
usr.sbin/ifstated/log.c

index fd2fb22..a759245 100644 (file)
@@ -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"
index cc29ad6..7f40140 100644 (file)
@@ -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"
index d137d0e..d109a4a 100644 (file)
@@ -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"
index 08232b3..aa07921 100644 (file)
@@ -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"
index 18852ce..615df5a 100644 (file)
@@ -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"
index b44f383..22630a8 100644 (file)
@@ -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"
index 24caa1f..e6d734d 100644 (file)
@@ -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"
index f9148d8..6c49b71 100644 (file)
@@ -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);