summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2015-11-29 00:14:08 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2015-11-29 00:14:08 +0000
commitcf3fb13051572cb9fff8f33434dd26fa5845fb08 (patch)
treef4a25d4fe97b63949c44484655020628fb55a7b3
parentd1fdce91a1eecab8f540e12ab64d1924f0c81487 (diff)
give up on pledge for now.
this will have to wait until jsing and stsp find time to look at it.
-rw-r--r--usr.sbin/installboot/installboot.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.sbin/installboot/installboot.c b/usr.sbin/installboot/installboot.c
index 33e33a7be8e..905e49b90f4 100644
--- a/usr.sbin/installboot/installboot.c
+++ b/usr.sbin/installboot/installboot.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: installboot.c,v 1.10 2015/11/26 19:03:10 deraadt Exp $ */
+/* $OpenBSD: installboot.c,v 1.11 2015/11/29 00:14:07 deraadt Exp $ */
/*
* Copyright (c) 2012, 2013 Joel Sing <jsing@openbsd.org>
@@ -51,9 +51,6 @@ main(int argc, char **argv)
char *dev, *realdev;
int devfd, opt;
- if (pledge("stdio rpath wpath cpath fattr disklabel", NULL) == -1)
- err(1, "pledge");
-
md_init();
while ((opt = getopt(argc, argv, "nr:v")) != -1) {