diff options
author | 2016-02-05 12:58:33 +0000 | |
---|---|---|
committer | 2016-02-05 12:58:33 +0000 | |
commit | 6f85e989a7ecb2e2b29be368ccab064e046ab24c (patch) | |
tree | 72e9982eff4232a046bd961c56f4e864d8252bf3 | |
parent | select -> poll in log message; ok bluhm@ florian@ (diff) | |
download | wireguard-openbsd-6f85e989a7ecb2e2b29be368ccab064e046ab24c.tar.xz wireguard-openbsd-6f85e989a7ecb2e2b29be368ccab064e046ab24c.zip |
No need for pledge("rpath")
-rw-r--r-- | usr.bin/locale/locale.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/locale/locale.c b/usr.bin/locale/locale.c index c8a132b2da1..8cc960e7fe9 100644 --- a/usr.bin/locale/locale.c +++ b/usr.bin/locale/locale.c @@ -1,4 +1,4 @@ -/* $OpenBSD: locale.c,v 1.10 2015/11/19 06:07:16 deraadt Exp $ */ +/* $OpenBSD: locale.c,v 1.11 2016/02/05 12:58:33 jca Exp $ */ /* * Copyright (c) 2013 Stefan Sperling <stsp@openbsd.org> * @@ -180,7 +180,7 @@ main(int argc, char *argv[]) setlocale(LC_ALL, ""); - if (pledge("stdio rpath", NULL) == -1) + if (pledge("stdio", NULL) == -1) err(1, "pledge"); if (argc == 1) { |