From 240aac1f315f7a1134e54770c8318611366ccd9c Mon Sep 17 00:00:00 2001 From: deraadt <> Date: Fri, 20 Jan 2017 08:57:12 +0000 Subject: rearrange pledge promises into the canonical order; easier to eyeball --- src/usr.bin/openssl/ocsp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/usr.bin/openssl/ocsp.c') diff --git a/src/usr.bin/openssl/ocsp.c b/src/usr.bin/openssl/ocsp.c index 82ea07aeee..47f9817c36 100644 --- a/src/usr.bin/openssl/ocsp.c +++ b/src/usr.bin/openssl/ocsp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ocsp.c,v 1.10 2017/01/20 08:14:55 beck Exp $ */ +/* $OpenBSD: ocsp.c,v 1.11 2017/01/20 08:57:12 deraadt Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 2000. */ @@ -147,7 +147,7 @@ ocsp_main(int argc, char **argv) const char *errstr = NULL; if (single_execution) { - if (pledge("stdio inet dns rpath wpath cpath tty", NULL) == -1) { + if (pledge("stdio cpath wpath rpath inet dns tty", NULL) == -1) { perror("pledge"); exit(1); } -- cgit v1.2.3-55-g6feb