diff options
author | tb <tb@cvs.openbsd.org> | 2015-12-06 11:22:38 +0000 |
---|---|---|
committer | tb <tb@cvs.openbsd.org> | 2015-12-06 11:22:38 +0000 |
commit | 2e498468740f5b49b3838a04e941799eb440fdb4 (patch) | |
tree | 71fa1a832f06d8e16629f758ec64111bd8578421 /games | |
parent | 5c558316fc3913afe9415c06b52283c8538e8bfc (diff) |
pledge "getpw" is not needed here.
ok semarie@
Diffstat (limited to 'games')
-rw-r--r-- | games/rain/rain.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/rain/rain.c b/games/rain/rain.c index 9d6beb79010..a066c5773e5 100644 --- a/games/rain/rain.c +++ b/games/rain/rain.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rain.c,v 1.18 2015/10/14 07:19:23 semarie Exp $ */ +/* $OpenBSD: rain.c,v 1.19 2015/12/06 11:22:37 tb Exp $ */ /* * Copyright (c) 1980, 1993 @@ -61,7 +61,7 @@ main(int argc, char *argv[]) int ch; int xpos[5], ypos[5]; - if (pledge("stdio rpath getpw tty", NULL) == -1) + if (pledge("stdio rpath tty", NULL) == -1) err(1, "pledge"); /* set default delay based on terminal baud rate */ |