pledge "stdio rpath wpath cpath"
authorderaadt <deraadt@openbsd.org>
Sat, 10 Oct 2015 19:11:04 +0000 (19:11 +0000)
committerderaadt <deraadt@openbsd.org>
Sat, 10 Oct 2015 19:11:04 +0000 (19:11 +0000)
ok doug

usr.bin/spell/spellprog.c

index 00bd131..6cfda60 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: spellprog.c,v 1.11 2015/02/08 23:40:34 deraadt Exp $  */
+/*     $OpenBSD: spellprog.c,v 1.12 2015/10/10 19:11:04 deraadt Exp $  */
 
 /*
  * Copyright (c) 1991, 1993
@@ -249,6 +249,9 @@ main(int argc, char **argv)
 
        setlocale(LC_ALL, "");
 
+       if (pledge("stdio rpath wpath cpath", NULL) == -1)
+               err(1, "pledge");
+
        outfile = NULL;
        while ((ch = getopt(argc, argv, "bvxo:")) != -1) {
                switch (ch) {