diff options
author | Bob Beck <beck@cvs.openbsd.org> | 2021-07-12 15:09:23 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 2021-07-12 15:09:23 +0000 |
commit | 73e82762d46ada77045a4c76185bdd75e2e712c3 (patch) | |
tree | 1e6fb3124598f66f9f86720c24b0174176b345c2 /usr.sbin/unbound | |
parent | e8f12d212e4dfa88699628d0df2a4e442a348350 (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 'usr.sbin/unbound')
-rw-r--r-- | usr.sbin/unbound/smallapp/unbound-anchor.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/unbound/smallapp/unbound-anchor.c b/usr.sbin/unbound/smallapp/unbound-anchor.c index f1adc6db561..dbd5f129257 100644 --- a/usr.sbin/unbound/smallapp/unbound-anchor.c +++ b/usr.sbin/unbound/smallapp/unbound-anchor.c @@ -2418,17 +2418,17 @@ int main(int argc, char* argv[]) exit(0); } if (unveil(root_anchor_temppath, "rwc") == -1) - err(1, "unveil"); + err(1, "unveil %s", root_anchor_temppath); free(root_anchor_temppath); free(s); if (unveil(root_cert_file, "r") == -1) - err(1, "unveil"); + err(1, "unveil %s", root_cert_file); if (res_conf != NULL && unveil(res_conf, "r") == -1) - err(1, "unveil"); + err(1, "unveil %s", res_conf); if (root_hints != NULL && unveil(root_hints, "r") == -1) - err(1, "unveil"); + err(1, "unveil %s", root_hints); if (debugconf != NULL && unveil(debugconf, "r") == -1) - err(1, "unveil"); + err(1, "unveil %s", debugconf); if (pledge("stdio rpath wpath cpath inet dns", NULL) == -1) err(1, "pledge"); |