diff options
author | 2012-09-25 15:36:29 +0000 | |
---|---|---|
committer | 2012-09-25 15:36:29 +0000 | |
commit | 1379683bed32994278c8b555d7d846c3a72c8626 (patch) | |
tree | 61da8446f4782867e8907b349b4347c8e7b1b3ba | |
parent | lost preposition "in" (diff) | |
download | wireguard-openbsd-1379683bed32994278c8b555d7d846c3a72c8626.tar.xz wireguard-openbsd-1379683bed32994278c8b555d7d846c3a72c8626.zip |
need inttypes.h
from millert@
-rw-r--r-- | usr.sbin/smtpd/util.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/util.c b/usr.sbin/smtpd/util.c index 6f583396443..92fa639061d 100644 --- a/usr.sbin/smtpd/util.c +++ b/usr.sbin/smtpd/util.c @@ -1,4 +1,4 @@ -/* $OpenBSD: util.c,v 1.81 2012/09/21 12:33:32 eric Exp $ */ +/* $OpenBSD: util.c,v 1.82 2012/09/25 15:36:29 eric Exp $ */ /* * Copyright (c) 2000,2001 Markus Friedl. All rights reserved. @@ -37,6 +37,7 @@ #include <fcntl.h> #include <fts.h> #include <imsg.h> +#include <inttypes.h> #include <libgen.h> #include <netdb.h> #include <pwd.h> |