add missing include of time.h
authorop <op@openbsd.org>
Wed, 31 May 2023 16:51:46 +0000 (16:51 +0000)
committerop <op@openbsd.org>
Wed, 31 May 2023 16:51:46 +0000 (16:51 +0000)
spotted after a report on OpenSMTPD-portable.  While here include
sys/time.h in smtpd.h, as noted in event_init(3), since it includes
event.h.

ok millert@

16 files changed:
usr.sbin/smtpd/bounce.c
usr.sbin/smtpd/control.c
usr.sbin/smtpd/enqueue.c
usr.sbin/smtpd/mda.c
usr.sbin/smtpd/mta.c
usr.sbin/smtpd/mta_session.c
usr.sbin/smtpd/queue.c
usr.sbin/smtpd/queue_backend.c
usr.sbin/smtpd/queue_fs.c
usr.sbin/smtpd/runq.c
usr.sbin/smtpd/scheduler_ramqueue.c
usr.sbin/smtpd/smtp_session.c
usr.sbin/smtpd/smtpctl.c
usr.sbin/smtpd/smtpd.c
usr.sbin/smtpd/smtpd.h
usr.sbin/smtpd/to.c

index 61e7b03..6d63226 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: bounce.c,v 1.89 2023/05/15 12:03:04 op Exp $  */
+/*     $OpenBSD: bounce.c,v 1.90 2023/05/31 16:51:46 op Exp $  */
 
 /*
  * Copyright (c) 2009 Gilles Chehade <gilles@poolp.org>
@@ -22,6 +22,7 @@
 #include <inttypes.h>
 #include <stdlib.h>
 #include <string.h>
+#include <time.h>
 #include <unistd.h>
 
 #include "smtpd.h"
index 835ab55..8e50393 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: control.c,v 1.129 2023/03/08 04:43:15 guenther Exp $  */
+/*     $OpenBSD: control.c,v 1.130 2023/05/31 16:51:46 op Exp $        */
 
 /*
  * Copyright (c) 2012 Gilles Chehade <gilles@poolp.org>
@@ -26,6 +26,7 @@
 #include <signal.h>
 #include <stdlib.h>
 #include <string.h>
+#include <time.h>
 #include <unistd.h>
 
 #include "smtpd.h"
index c90b60d..95e6c04 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: enqueue.c,v 1.120 2021/07/28 19:39:50 benno Exp $     */
+/*     $OpenBSD: enqueue.c,v 1.121 2023/05/31 16:51:46 op Exp $        */
 
 /*
  * Copyright (c) 2005 Henning Brauer <henning@bulabula.org>
@@ -24,6 +24,7 @@
 #include <pwd.h>
 #include <stdlib.h>
 #include <string.h>
+#include <time.h>
 #include <unistd.h>
 
 #include "smtpd.h"
index 894bf86..bdc695f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: mda.c,v 1.145 2023/05/10 07:19:08 op Exp $    */
+/*     $OpenBSD: mda.c,v 1.146 2023/05/31 16:51:46 op Exp $    */
 
 /*
  * Copyright (c) 2008 Gilles Chehade <gilles@poolp.org>
@@ -24,6 +24,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <sysexits.h>
+#include <time.h>
 #include <unistd.h>
 #include <vis.h>
 
index 05506da..c0d0fc0 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: mta.c,v 1.244 2023/05/16 17:48:52 op Exp $    */
+/*     $OpenBSD: mta.c,v 1.245 2023/05/31 16:51:46 op Exp $    */
 
 /*
  * Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org>
@@ -22,6 +22,7 @@
 #include <inttypes.h>
 #include <stdlib.h>
 #include <string.h>
+#include <time.h>
 #include <tls.h>
 
 #include "smtpd.h"
index 92f1ec7..160b41d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: mta_session.c,v 1.148 2023/05/15 12:03:04 op Exp $    */
+/*     $OpenBSD: mta_session.c,v 1.149 2023/05/31 16:51:46 op Exp $    */
 
 /*
  * Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org>
@@ -26,6 +26,7 @@
 #include <inttypes.h>
 #include <stdlib.h>
 #include <string.h>
+#include <time.h>
 #include <tls.h>
 #include <unistd.h>
 
index e79e3f0..ad7980d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: queue.c,v 1.194 2021/08/02 12:33:34 eric Exp $        */
+/*     $OpenBSD: queue.c,v 1.195 2023/05/31 16:51:46 op Exp $  */
 
 /*
  * Copyright (c) 2008 Gilles Chehade <gilles@poolp.org>
@@ -23,6 +23,7 @@
 #include <signal.h>
 #include <stdlib.h>
 #include <string.h>
+#include <time.h>
 #include <unistd.h>
 
 #include "smtpd.h"
index 646cd62..78f3952 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: queue_backend.c,v 1.68 2021/06/14 17:58:16 eric Exp $ */
+/*     $OpenBSD: queue_backend.c,v 1.69 2023/05/31 16:51:46 op Exp $   */
 
 /*
  * Copyright (c) 2011 Gilles Chehade <gilles@poolp.org>
@@ -23,6 +23,7 @@
 #include <pwd.h>
 #include <stdlib.h>
 #include <string.h>
+#include <time.h>
 #include <unistd.h>
 
 #include "smtpd.h"
index ec539eb..83e2d3f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: queue_fs.c,v 1.22 2021/06/14 17:58:16 eric Exp $      */
+/*     $OpenBSD: queue_fs.c,v 1.23 2023/05/31 16:51:46 op Exp $        */
 
 /*
  * Copyright (c) 2011 Gilles Chehade <gilles@poolp.org>
@@ -28,6 +28,7 @@
 #include <pwd.h>
 #include <stdlib.h>
 #include <string.h>
+#include <time.h>
 #include <unistd.h>
 
 #include "smtpd.h"
index 24ca71c..a37b490 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: runq.c,v 1.4 2021/06/14 17:58:16 eric Exp $   */
+/*     $OpenBSD: runq.c,v 1.5 2023/05/31 16:51:46 op Exp $     */
 
 /*
  * Copyright (c) 2013,2019 Eric Faurot <eric@openbsd.org>
@@ -17,6 +17,7 @@
  */
 
 #include <stdlib.h>
+#include <time.h>
 
 #include "smtpd.h"
 
index fa3b951..473eb65 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: scheduler_ramqueue.c,v 1.47 2021/06/14 17:58:16 eric Exp $    */
+/*     $OpenBSD: scheduler_ramqueue.c,v 1.48 2023/05/31 16:51:46 op Exp $      */
 
 /*
  * Copyright (c) 2012 Gilles Chehade <gilles@poolp.org>
@@ -20,6 +20,7 @@
 #include <inttypes.h>
 #include <stdlib.h>
 #include <string.h>
+#include <time.h>
 
 #include "smtpd.h"
 #include "log.h"
index 72e13e8..1686f03 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: smtp_session.c,v 1.433 2022/10/20 01:16:04 millert Exp $      */
+/*     $OpenBSD: smtp_session.c,v 1.434 2023/05/31 16:51:46 op Exp $   */
 
 /*
  * Copyright (c) 2008 Gilles Chehade <gilles@poolp.org>
@@ -24,6 +24,7 @@
 #include <inttypes.h>
 #include <stdlib.h>
 #include <string.h>
+#include <time.h>
 #include <tls.h>
 #include <unistd.h>
 #include <vis.h>
index 8466302..8881c3e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: smtpctl.c,v 1.171 2023/05/15 12:03:04 op Exp $        */
+/*     $OpenBSD: smtpctl.c,v 1.172 2023/05/31 16:51:46 op Exp $        */
 
 /*
  * Copyright (c) 2013 Eric Faurot <eric@openbsd.org>
@@ -32,6 +32,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <syslog.h>
+#include <time.h>
 #include <unistd.h>
 #include <vis.h>
 
index 5949ce0..0bd24de 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: smtpd.c,v 1.344 2023/02/08 08:20:54 tb Exp $  */
+/*     $OpenBSD: smtpd.c,v 1.345 2023/05/31 16:51:46 op Exp $  */
 
 /*
  * Copyright (c) 2008 Gilles Chehade <gilles@poolp.org>
@@ -36,6 +36,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <sysexits.h>
+#include <time.h>
 #include <tls.h>
 #include <unistd.h>
 
index 65757e5..397f3df 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: smtpd.h,v 1.675 2023/05/25 11:37:58 op Exp $  */
+/*     $OpenBSD: smtpd.h,v 1.676 2023/05/31 16:51:46 op Exp $  */
 
 /*
  * Copyright (c) 2008 Gilles Chehade <gilles@poolp.org>
@@ -25,6 +25,7 @@
 #include <sys/queue.h>
 #include <sys/tree.h>
 #include <sys/socket.h>
+#include <sys/time.h>
 
 #include <event.h>
 #include <imsg.h>
index 4a5c692..be9ff01 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: to.c,v 1.49 2023/05/10 08:02:10 op Exp $      */
+/*     $OpenBSD: to.c,v 1.50 2023/05/31 16:51:46 op Exp $      */
 
 /*
  * Copyright (c) 2009 Jacek Masiulaniec <jacekm@dobremiasto.net>
@@ -23,6 +23,7 @@
 #include <errno.h>
 #include <stdlib.h>
 #include <string.h>
+#include <time.h>
 #if IO_TLS
 #include <tls.h>
 #endif