From: mestre Date: Sat, 11 Aug 2018 11:04:26 +0000 (+0000) Subject: actually s/unveil/pledge on err(3), I missed it on previous commit. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=cf9a5b10aaed1cb66248d58670df9f0e20016e66;p=openbsd actually s/unveil/pledge on err(3), I missed it on previous commit. --- diff --git a/usr.bin/mesg/mesg.c b/usr.bin/mesg/mesg.c index 1de4aa799bc..f5db6a0aadf 100644 --- a/usr.bin/mesg/mesg.c +++ b/usr.bin/mesg/mesg.c @@ -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);