diff options
author | 2016-01-01 12:37:14 +0000 | |
---|---|---|
committer | 2016-01-01 12:37:14 +0000 | |
commit | e8ebaf2e6e61a7c9b72f9997aed0806eed4c0b80 (patch) | |
tree | 5e601adf624e11d197d7efea9cfc8cfa04373c0d | |
parent | Don't rely on a calculation wrapping when applying message-limit, and (diff) | |
download | wireguard-openbsd-e8ebaf2e6e61a7c9b72f9997aed0806eed4c0b80.tar.xz wireguard-openbsd-e8ebaf2e6e61a7c9b72f9997aed0806eed4c0b80.zip |
add grp.h for setgroups, not necessarily required on OpenBSD but reduces diff
to -portable
ok gilles
-rw-r--r-- | usr.sbin/smtpd/pony.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/pony.c b/usr.sbin/smtpd/pony.c index 1bc552db85c..8be383eca0c 100644 --- a/usr.sbin/smtpd/pony.c +++ b/usr.sbin/smtpd/pony.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pony.c,v 1.11 2015/12/13 10:54:11 gilles Exp $ */ +/* $OpenBSD: pony.c,v 1.12 2016/01/01 12:37:14 jung Exp $ */ /* * Copyright (c) 2014 Gilles Chehade <gilles@poolp.org> @@ -35,6 +35,7 @@ #include <time.h> #include <unistd.h> #include <limits.h> +#include <grp.h> #include <vis.h> #include "smtpd.h" |