diff options
author | Eric Faurot <eric@cvs.openbsd.org> | 2018-04-26 21:19:47 +0000 |
---|---|---|
committer | Eric Faurot <eric@cvs.openbsd.org> | 2018-04-26 21:19:47 +0000 |
commit | 395c2dfa2e32c0cafae376a79cf948602b669c81 (patch) | |
tree | 1de083abef7bae5329f1b22d9b914ffe49e33c31 /usr.sbin/smtpd/smtpc.c | |
parent | 75721b659b83e2d4c8eda91412dd47bc8df913dc (diff) |
fix build for smtp(1) after log.h update
Diffstat (limited to 'usr.sbin/smtpd/smtpc.c')
-rw-r--r-- | usr.sbin/smtpd/smtpc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/smtpc.c b/usr.sbin/smtpd/smtpc.c index cfc1be087d8..e7c401db90c 100644 --- a/usr.sbin/smtpd/smtpc.c +++ b/usr.sbin/smtpd/smtpc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpc.c,v 1.1 2018/04/26 13:57:13 eric Exp $ */ +/* $OpenBSD: smtpc.c,v 1.2 2018/04/26 21:19:46 eric Exp $ */ /* * Copyright (c) 2018 Eric Faurot <eric@openbsd.org> @@ -27,6 +27,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <syslog.h> #include <unistd.h> #include "smtp.h" |