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/rcs/rcsprog.c | |
parent | a43127574ba4055cdf66955f4270ad65bedae9d5 (diff) |
normalize a few more tame request orderings, to help review
Diffstat (limited to 'usr.bin/rcs/rcsprog.c')
-rw-r--r-- | usr.bin/rcs/rcsprog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/rcs/rcsprog.c b/usr.bin/rcs/rcsprog.c index f6a1996abf3..383cf2736cc 100644 --- a/usr.bin/rcs/rcsprog.c +++ b/usr.bin/rcs/rcsprog.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rcsprog.c,v 1.157 2015/10/10 18:58:53 deraadt Exp $ */ +/* $OpenBSD: rcsprog.c,v 1.158 2015/10/10 20:35:01 deraadt Exp $ */ /* * Copyright (c) 2005 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -128,7 +128,7 @@ main(int argc, char **argv) char **cmd_argv; int ret, cmd_argc; - if (pledge("stdio getpw rpath wpath cpath fattr", NULL) == -1) + if (pledge("stdio rpath wpath cpath fattr getpw", NULL) == -1) err(1, "pledge"); ret = -1; |