diff options
author | 2012-08-11 19:18:36 +0000 | |
---|---|---|
committer | 2012-08-11 19:18:36 +0000 | |
commit | 1ae37aa2cd7d19f06526a5a19d23268290acf746 (patch) | |
tree | 905df6ef9758abec29b0ea295f135bcf267d8142 | |
parent | Make a couple of variables local. (diff) | |
download | wireguard-openbsd-1ae37aa2cd7d19f06526a5a19d23268290acf746.tar.xz wireguard-openbsd-1ae37aa2cd7d19f06526a5a19d23268290acf746.zip |
Add missing header needed by PRI format string
Add missing header needed by time()
ok eric@
-rw-r--r-- | usr.sbin/smtpd/queue.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/queue.c b/usr.sbin/smtpd/queue.c index d6b22f828e4..f7e4586057f 100644 --- a/usr.sbin/smtpd/queue.c +++ b/usr.sbin/smtpd/queue.c @@ -1,4 +1,4 @@ -/* $OpenBSD: queue.c,v 1.124 2012/08/09 16:00:31 eric Exp $ */ +/* $OpenBSD: queue.c,v 1.125 2012/08/11 19:18:36 chl Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org> @@ -28,12 +28,14 @@ #include <err.h> #include <event.h> #include <imsg.h> +#include <inttypes.h> #include <libgen.h> #include <pwd.h> #include <signal.h> #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <time.h> #include <unistd.h> #include "smtpd.h" |