diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2013-11-26 15:52:17 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2013-11-26 15:52:17 +0000 |
commit | f3ef234707c5aa559ada55e521861e7404c16317 (patch) | |
tree | 2cd523c46dc70a4feebc225ca23114167eb52305 /usr.sbin | |
parent | c095eea45c1be6e4cccdddc5f097fc23d6022656 (diff) |
need errno, thx sthen
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/smtpd/enqueue.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/enqueue.c b/usr.sbin/smtpd/enqueue.c index ab095aa790d..cfbc4da1436 100644 --- a/usr.sbin/smtpd/enqueue.c +++ b/usr.sbin/smtpd/enqueue.c @@ -1,4 +1,4 @@ -/* $OpenBSD: enqueue.c,v 1.70 2013/11/26 12:01:40 henning Exp $ */ +/* $OpenBSD: enqueue.c,v 1.71 2013/11/26 15:52:16 henning Exp $ */ /* * Copyright (c) 2005 Henning Brauer <henning@bulabula.org> @@ -26,6 +26,7 @@ #include <ctype.h> #include <err.h> +#include <errno.h> #include <event.h> #include <imsg.h> #include <inttypes.h> |