diff options
author | Ricardo Mestre <mestre@cvs.openbsd.org> | 2021-02-06 21:42:31 +0000 |
---|---|---|
committer | Ricardo Mestre <mestre@cvs.openbsd.org> | 2021-02-06 21:42:31 +0000 |
commit | 72e2c97aa0151396f8e75966dde991ffdc024e4b (patch) | |
tree | 0a8207068be5e4745c78a00954c3f576765bb3d7 /games | |
parent | 7b6b7e8b5b3bbc8f5a7880cc74f39f4cdea14154 (diff) |
while learning (teachgammon(1)) you might want to save your game so "{w,c}path"
pledge(2) permissions are required
Diffstat (limited to 'games')
-rw-r--r-- | games/backgammon/teachgammon/teach.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/backgammon/teachgammon/teach.c b/games/backgammon/teachgammon/teach.c index 4c882f762b9..ae66d3b30fd 100644 --- a/games/backgammon/teachgammon/teach.c +++ b/games/backgammon/teachgammon/teach.c @@ -1,4 +1,4 @@ -/* $OpenBSD: teach.c,v 1.18 2017/01/21 08:22:57 krw Exp $ */ +/* $OpenBSD: teach.c,v 1.19 2021/02/06 21:42:30 mestre Exp $ */ /* * Copyright (c) 1980, 1993 @@ -53,7 +53,7 @@ main(int argc, char *argv[]) { int i; - if (pledge("stdio rpath tty exec", NULL) == -1) + if (pledge("stdio rpath wpath cpath tty exec", NULL) == -1) err(1, "pledge"); signal(SIGINT, getout); |