mirror of
https://github.com/openbsd/src.git
synced 2025-01-10 06:47:55 -08:00
actually s/unveil/pledge on err(3), I missed it on previous commit.
This commit is contained in:
parent
23bc116ea6
commit
cf9a5b10aa
@ -1,4 +1,4 @@
|
||||
/* $OpenBSD: mesg.c,v 1.14 2018/08/11 10:58:39 mestre Exp $ */
|
||||
/* $OpenBSD: mesg.c,v 1.15 2018/08/11 11:04:26 mestre Exp $ */
|
||||
/* $NetBSD: mesg.c,v 1.4 1994/12/23 07:16:32 jtc Exp $ */
|
||||
|
||||
/*
|
||||
@ -67,7 +67,7 @@ main(int argc, char *argv[])
|
||||
if (unveil(tty, "rw") == -1)
|
||||
err(2, "unveil");
|
||||
if (pledge("stdio rpath fattr", NULL) == -1)
|
||||
err(2, "unveil");
|
||||
err(2, "pledge");
|
||||
|
||||
if (stat(tty, &sb) < 0)
|
||||
err(2, "%s", tty);
|
||||
|
Loading…
Reference in New Issue
Block a user