diff options
author | 2011-12-18 22:52:25 +0000 | |
---|---|---|
committer | 2011-12-18 22:52:25 +0000 | |
commit | 34cb135fbfa01c22affa10fb66dafecd9bdb3c30 (patch) | |
tree | 22f1a60f18574dae46773d3af807a10b9ea9812f | |
parent | remove unused header (diff) | |
download | wireguard-openbsd-34cb135fbfa01c22affa10fb66dafecd9bdb3c30.tar.xz wireguard-openbsd-34cb135fbfa01c22affa10fb66dafecd9bdb3c30.zip |
Add missing header needed by PRI format string
ok eric@
-rw-r--r-- | usr.sbin/smtpd/smtpctl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/smtpctl.c b/usr.sbin/smtpd/smtpctl.c index e8f0c77b1b0..34b4d881694 100644 --- a/usr.sbin/smtpd/smtpctl.c +++ b/usr.sbin/smtpd/smtpctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpctl.c,v 1.73 2011/12/14 18:42:27 eric Exp $ */ +/* $OpenBSD: smtpctl.c,v 1.74 2011/12/18 22:52:25 chl Exp $ */ /* * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org> @@ -30,6 +30,7 @@ #include <errno.h> #include <event.h> #include <imsg.h> +#include <inttypes.h> #include <pwd.h> #include <stdio.h> #include <stdlib.h> |