diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2017-01-20 08:57:13 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2017-01-20 08:57:13 +0000 |
commit | ff98a88553e2dab7e7f49d8fa1bd10240ad125b4 (patch) | |
tree | 95686005bb351ec6e22f5cfbb285763b58bd4acd /usr.bin/openssl/pkey.c | |
parent | 54af90d31b306c80dee1d3d6fde675e38ccf06be (diff) |
rearrange pledge promises into the canonical order; easier to eyeball
Diffstat (limited to 'usr.bin/openssl/pkey.c')
-rw-r--r-- | usr.bin/openssl/pkey.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/openssl/pkey.c b/usr.bin/openssl/pkey.c index 9c38d0ee3c5..e91bc790906 100644 --- a/usr.bin/openssl/pkey.c +++ b/usr.bin/openssl/pkey.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pkey.c,v 1.8 2015/10/17 15:00:11 doug Exp $ */ +/* $OpenBSD: pkey.c,v 1.9 2017/01/20 08:57:12 deraadt Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 2006 */ @@ -80,7 +80,7 @@ pkey_main(int argc, char **argv) int ret = 1; if (single_execution) { - if (pledge("stdio rpath wpath cpath tty", NULL) == -1) { + if (pledge("stdio cpath wpath rpath tty", NULL) == -1) { perror("pledge"); exit(1); } |