summaryrefslogtreecommitdiff
path: root/usr.bin/encrypt
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2018-08-03 04:19:35 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2018-08-03 04:19:35 +0000
commit4eaa6d8d468775c8ee0fa148b40802454709b4fb (patch)
treec684c93827c68984008285ab40f651f50850c359 /usr.bin/encrypt
parent452958cf8ad8e3bab6d759b5a156615747cc8f67 (diff)
This does not need pledge "wpath"
Diffstat (limited to 'usr.bin/encrypt')
-rw-r--r--usr.bin/encrypt/encrypt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/encrypt/encrypt.c b/usr.bin/encrypt/encrypt.c
index 33037665423..797bf397aa4 100644
--- a/usr.bin/encrypt/encrypt.c
+++ b/usr.bin/encrypt/encrypt.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: encrypt.c,v 1.47 2017/05/24 09:19:55 mestre Exp $ */
+/* $OpenBSD: encrypt.c,v 1.48 2018/08/03 04:19:34 deraadt Exp $ */
/*
* Copyright (c) 1996, Jason Downs. All rights reserved.
@@ -95,7 +95,7 @@ main(int argc, char **argv)
char *extra = NULL; /* Store login class or number of rounds */
const char *errstr;
- if (pledge("stdio rpath wpath tty", NULL) == -1)
+ if (pledge("stdio rpath tty", NULL) == -1)
err(1, "pledge");
while ((opt = getopt(argc, argv, "pb:c:")) != -1) {