diff options
Diffstat (limited to 'usr.bin/getconf/getconf.c')
-rw-r--r-- | usr.bin/getconf/getconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/getconf/getconf.c b/usr.bin/getconf/getconf.c index f3240af8bd4..c8645478b57 100644 --- a/usr.bin/getconf/getconf.c +++ b/usr.bin/getconf/getconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: getconf.c,v 1.21 2021/07/12 15:09:19 beck Exp $ */ +/* $OpenBSD: getconf.c,v 1.22 2022/07/20 14:23:13 claudio Exp $ */ /*- * Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -499,7 +499,7 @@ main(int argc, char *argv[]) break; case SYSCONF: - if (pledge("stdio inet ps vminfo", NULL) == -1) + if (pledge("stdio ps vminfo", NULL) == -1) err(1, "pledge"); errno = 0; if ((val = sysconf(cp->value)) == -1) { |