diff options
author | 2016-07-12 12:10:42 +0000 | |
---|---|---|
committer | 2016-07-12 12:10:42 +0000 | |
commit | b432a158d7fcdfd14557bf005f6c01811e9fbccd (patch) | |
tree | 668c4c462a8a8cb593f0dcfba9760a7c8aa1850e | |
parent | Add regression tests for syslogd TLS client certificates. (diff) | |
download | wireguard-openbsd-b432a158d7fcdfd14557bf005f6c01811e9fbccd.tar.xz wireguard-openbsd-b432a158d7fcdfd14557bf005f6c01811e9fbccd.zip |
add "recvfd" to doas(1) for use with skey.
ok tb@ deraadt@
-rw-r--r-- | usr.bin/doas/doas.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/doas/doas.c b/usr.bin/doas/doas.c index 84afd3f99ec..606d1b1506a 100644 --- a/usr.bin/doas/doas.c +++ b/usr.bin/doas/doas.c @@ -1,4 +1,4 @@ -/* $OpenBSD: doas.c,v 1.58 2016/06/24 20:49:56 tedu Exp $ */ +/* $OpenBSD: doas.c,v 1.59 2016/07/12 12:10:42 semarie Exp $ */ /* * Copyright (c) 2015 Ted Unangst <tedu@openbsd.org> * @@ -230,7 +230,7 @@ main(int argc, char **argv) setprogname("doas"); - if (pledge("stdio rpath getpw tty proc exec id", NULL) == -1) + if (pledge("stdio rpath getpw tty recvfd proc exec id", NULL) == -1) err(1, "pledge"); closefrom(STDERR_FILENO + 1); |