diff options
author | 2015-12-06 11:22:37 +0000 | |
---|---|---|
committer | 2015-12-06 11:22:37 +0000 | |
commit | 43b9874dbc310bf9140ed62b06d241f98098bce2 (patch) | |
tree | 1441e394e34ca8d76025f395107468f745e14c1a | |
parent | Since the page zeroing thread runs without the kernel lock, (diff) | |
download | wireguard-openbsd-43b9874dbc310bf9140ed62b06d241f98098bce2.tar.xz wireguard-openbsd-43b9874dbc310bf9140ed62b06d241f98098bce2.zip |
pledge "getpw" is not needed here.
ok semarie@
-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 */ |