summaryrefslogtreecommitdiff
path: root/regress/usr.bin/lastcomm/unveil.c
diff options
context:
space:
mode:
authorBob Beck <beck@cvs.openbsd.org>2021-07-12 15:09:23 +0000
committerBob Beck <beck@cvs.openbsd.org>2021-07-12 15:09:23 +0000
commit73e82762d46ada77045a4c76185bdd75e2e712c3 (patch)
tree1e6fb3124598f66f9f86720c24b0174176b345c2 /regress/usr.bin/lastcomm/unveil.c
parente8f12d212e4dfa88699628d0df2a4e442a348350 (diff)
Change the error reporting pattern throughout the tree when unveil
fails to report the path that the failure occured on. Suggested by deraadt@ after some tech discussion. Work done and verified by Ashton Fagg <ashton@fagg.id.au> ok deraadt@ semarie@ claudio@
Diffstat (limited to 'regress/usr.bin/lastcomm/unveil.c')
-rw-r--r--regress/usr.bin/lastcomm/unveil.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/usr.bin/lastcomm/unveil.c b/regress/usr.bin/lastcomm/unveil.c
index 660b8dd5738..54912108fe1 100644
--- a/regress/usr.bin/lastcomm/unveil.c
+++ b/regress/usr.bin/lastcomm/unveil.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: unveil.c,v 1.1 2020/07/27 13:40:02 rob Exp $ */
+/* $OpenBSD: unveil.c,v 1.2 2021/07/12 15:09:18 beck Exp $ */
/*
* Copyright (c) 2020 Rob Pierce <rob@openbsd.org>
*
@@ -22,7 +22,7 @@ int
main(int argc, char *argv[])
{
if (unveil("/tmp", "r") == -1)
- err(1, "unveil");
+ err(1, "unveil /tmp");
if (unveil(NULL, NULL) == -1)
err(1, "unveil");