diff options
author | 2012-06-08 11:34:23 +0000 | |
---|---|---|
committer | 2012-06-08 11:34:23 +0000 | |
commit | 6613fe7950eb86670ea14e340e6c31fa0069ad71 (patch) | |
tree | 6157ffc3ff52c7e9b5e1fae2c61b32458a46ed7c | |
parent | Missed a comment in the proc->process change (diff) | |
download | wireguard-openbsd-6613fe7950eb86670ea14e340e6c31fa0069ad71.tar.xz wireguard-openbsd-6613fe7950eb86670ea14e340e6c31fa0069ad71.zip |
add missing header needed by time()
ok eric@ gilles@
-rw-r--r-- | usr.sbin/smtpd/queue_backend.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/queue_backend.c b/usr.sbin/smtpd/queue_backend.c index c78a0b3990e..2123001594f 100644 --- a/usr.sbin/smtpd/queue_backend.c +++ b/usr.sbin/smtpd/queue_backend.c @@ -1,4 +1,4 @@ -/* $OpenBSD: queue_backend.c,v 1.22 2012/06/03 19:52:56 eric Exp $ */ +/* $OpenBSD: queue_backend.c,v 1.23 2012/06/08 11:34:23 chl Exp $ */ /* * Copyright (c) 2011 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" |