From e31967d1cfa18b60fe97bec0544b50facdf1b54e Mon Sep 17 00:00:00 2001 From: deraadt Date: Wed, 7 Oct 2015 07:00:01 +0000 Subject: [PATCH] tame "stdio rpath". could go crazy and handle the non-filename case, but i am feeling some fatigue. --- usr.bin/nl/nl.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/usr.bin/nl/nl.c b/usr.bin/nl/nl.c index 2d33967b901..59e3af8ba20 100644 --- a/usr.bin/nl/nl.c +++ b/usr.bin/nl/nl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nl.c,v 1.4 2015/01/21 22:28:09 deraadt Exp $ */ +/* $OpenBSD: nl.c,v 1.5 2015/10/07 07:00:01 deraadt Exp $ */ /* $NetBSD: nl.c,v 1.11 2011/08/16 12:00:46 christos Exp $ */ /*- @@ -118,6 +118,9 @@ main(int argc, char *argv[]) (void)setlocale(LC_ALL, ""); + if (tame("stdio rpath", NULL) == -1) + err(1, "tame"); + while ((c = getopt(argc, argv, "pb:d:f:h:i:l:n:s:v:w:")) != -1) { switch (c) { case 'p': -- 2.20.1