diff options
Diffstat (limited to 'usr.sbin/ifstated/ifstated.c')
-rw-r--r-- | usr.sbin/ifstated/ifstated.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ifstated/ifstated.c b/usr.sbin/ifstated/ifstated.c index 7d6ba2fae07..621beb0de4a 100644 --- a/usr.sbin/ifstated/ifstated.c +++ b/usr.sbin/ifstated/ifstated.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ifstated.c,v 1.65 2020/12/30 18:40:44 benno Exp $ */ +/* $OpenBSD: ifstated.c,v 1.66 2021/07/12 15:09:21 beck Exp $ */ /* * Copyright (c) 2004 Marco Pfatschbacher <mpf@openbsd.org> @@ -162,9 +162,9 @@ main(int argc, char *argv[]) log_warn("%s: setsockopt tablefilter", __func__); if (unveil(configfile, "r") == -1) - fatal("unveil"); + fatal("unveil %s", configfile); if (unveil(_PATH_BSHELL, "x") == -1) - fatal("unveil"); + fatal("unveil %s", _PATH_BSHELL); if (pledge("stdio rpath route proc exec", NULL) == -1) fatal("pledge"); |