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/kdump | |
parent | a43127574ba4055cdf66955f4270ad65bedae9d5 (diff) |
normalize a few more tame request orderings, to help review
Diffstat (limited to 'usr.bin/kdump')
-rw-r--r-- | usr.bin/kdump/kdump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/kdump/kdump.c b/usr.bin/kdump/kdump.c index 5fa69cdaaef..a948b71e36e 100644 --- a/usr.bin/kdump/kdump.c +++ b/usr.bin/kdump/kdump.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kdump.c,v 1.114 2015/10/10 19:19:46 deraadt Exp $ */ +/* $OpenBSD: kdump.c,v 1.115 2015/10/10 20:35:00 deraadt Exp $ */ /*- * Copyright (c) 1988, 1993 @@ -241,7 +241,7 @@ main(int argc, char *argv[]) if (argc > optind) usage(); - if (pledge("stdio getpw rpath", NULL) == -1) + if (pledge("stdio rpath getpw", NULL) == -1) err(1, "pledge"); m = malloc(size = 1025); |