This does not need pledge "wpath"
authorderaadt <deraadt@openbsd.org>
Fri, 3 Aug 2018 04:19:34 +0000 (04:19 +0000)
committerderaadt <deraadt@openbsd.org>
Fri, 3 Aug 2018 04:19:34 +0000 (04:19 +0000)
usr.bin/encrypt/encrypt.c

index 3303766..797bf39 100644 (file)
@@ -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) {