diff options
author | Charles Longeau <chl@cvs.openbsd.org> | 2009-02-23 00:51:33 +0000 |
---|---|---|
committer | Charles Longeau <chl@cvs.openbsd.org> | 2009-02-23 00:51:33 +0000 |
commit | 5d144654091f1b56f8792202cbab8e69d832130d (patch) | |
tree | 67b27458a90cf20eba3fb777693d10db6d535524 /usr.sbin/smtpd | |
parent | 37372828ca4ee232209ef728e767a9196552238d (diff) |
add missing headers needed by time()
ok jacekm@ gilles@
Diffstat (limited to 'usr.sbin/smtpd')
-rw-r--r-- | usr.sbin/smtpd/queue_shared.c | 3 | ||||
-rw-r--r-- | usr.sbin/smtpd/smtp.c | 3 | ||||
-rw-r--r-- | usr.sbin/smtpd/smtpd.c | 3 | ||||
-rw-r--r-- | usr.sbin/smtpd/store.c | 3 |
4 files changed, 8 insertions, 4 deletions
diff --git a/usr.sbin/smtpd/queue_shared.c b/usr.sbin/smtpd/queue_shared.c index f61d54ea7c6..bd707445c7c 100644 --- a/usr.sbin/smtpd/queue_shared.c +++ b/usr.sbin/smtpd/queue_shared.c @@ -1,4 +1,4 @@ -/* $OpenBSD: queue_shared.c,v 1.12 2009/02/22 23:29:54 jacekm Exp $ */ +/* $OpenBSD: queue_shared.c,v 1.13 2009/02/23 00:51:32 chl Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org> @@ -33,6 +33,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <time.h> #include <unistd.h> #include "smtpd.h" diff --git a/usr.sbin/smtpd/smtp.c b/usr.sbin/smtpd/smtp.c index ccd880a5eac..8254b81d09b 100644 --- a/usr.sbin/smtpd/smtp.c +++ b/usr.sbin/smtpd/smtp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: smtp.c,v 1.28 2009/02/22 19:07:33 chl Exp $ */ +/* $OpenBSD: smtp.c,v 1.29 2009/02/23 00:51:32 chl Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org> @@ -30,6 +30,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <time.h> #include <unistd.h> #include "smtpd.h" diff --git a/usr.sbin/smtpd/smtpd.c b/usr.sbin/smtpd/smtpd.c index d3c8f253b4c..b4082167cb3 100644 --- a/usr.sbin/smtpd/smtpd.c +++ b/usr.sbin/smtpd/smtpd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpd.c,v 1.31 2009/02/22 11:44:29 form Exp $ */ +/* $OpenBSD: smtpd.c,v 1.32 2009/02/23 00:51:32 chl Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org> @@ -41,6 +41,7 @@ #include <stdlib.h> #include <string.h> #include <sysexits.h> +#include <time.h> #include <unistd.h> #include <keynote.h> diff --git a/usr.sbin/smtpd/store.c b/usr.sbin/smtpd/store.c index 517aa814084..ce9b713f572 100644 --- a/usr.sbin/smtpd/store.c +++ b/usr.sbin/smtpd/store.c @@ -1,4 +1,4 @@ -/* $OpenBSD: store.c,v 1.13 2009/01/30 20:11:13 form Exp $ */ +/* $OpenBSD: store.c,v 1.14 2009/02/23 00:51:32 chl Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org> @@ -32,6 +32,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <time.h> #include <unistd.h> #include "smtpd.h" |