diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-10-10 20:35:02 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-10-10 20:35:02 +0000 |
commit | 8d404b3642b5cd3bbc23b967a369465cdceef0a6 (patch) | |
tree | 80a8faa0a10379f34dd9410045ffcc2e145eaf49 /usr.bin/find | |
parent | a43127574ba4055cdf66955f4270ad65bedae9d5 (diff) |
normalize a few more tame request orderings, to help review
Diffstat (limited to 'usr.bin/find')
-rw-r--r-- | usr.bin/find/find.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/find/find.c b/usr.bin/find/find.c index 3aa979b95c7..7213d31243a 100644 --- a/usr.bin/find/find.c +++ b/usr.bin/find/find.c @@ -1,4 +1,4 @@ -/* $OpenBSD: find.c,v 1.19 2015/10/09 01:37:07 deraadt Exp $ */ +/* $OpenBSD: find.c,v 1.20 2015/10/10 20:35:00 deraadt Exp $ */ /*- * Copyright (c) 1991, 1993 @@ -155,7 +155,7 @@ find_execute(PLAN *plan, /* search plan */ PLAN *p; if (mayexecve == 0) - if (pledge("stdio getpw rpath", NULL) == -1) + if (pledge("stdio rpath getpw", NULL) == -1) err(1, "pledge"); rval = 0; |