summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorPaul Janzen <pjanzen@cvs.openbsd.org>2003-05-21 00:56:51 +0000
committerPaul Janzen <pjanzen@cvs.openbsd.org>2003-05-21 00:56:51 +0000
commit7f22c5993293ee6ef221ed9f0c622fc906e32e55 (patch)
tree2f09f6a808aa32a82e3fd71785b4e25569d8048a /usr.bin
parentefab05f181edb539de0af51b9f044ab504a092af (diff)
From NetBSD:
Fix an ancient typo which made "_POSIX_PATH_MAX" actually return "_POSIX_PIPE_BUF".
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/getconf/getconf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/getconf/getconf.c b/usr.bin/getconf/getconf.c
index 07d31d1f475..56203ad9322 100644
--- a/usr.bin/getconf/getconf.c
+++ b/usr.bin/getconf/getconf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: getconf.c,v 1.6 2002/02/16 21:27:46 millert Exp $ */
+/* $OpenBSD: getconf.c,v 1.7 2003/05/21 00:56:50 pjanzen Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -41,7 +41,7 @@
*/
#ifndef lint
-static char rcsid[] = "$OpenBSD: getconf.c,v 1.6 2002/02/16 21:27:46 millert Exp $";
+static char rcsid[] = "$OpenBSD: getconf.c,v 1.7 2003/05/21 00:56:50 pjanzen Exp $";
#endif /* not lint */
#include <stdio.h>
@@ -85,7 +85,7 @@ const struct conf_variable conf_table[] =
{ "_POSIX_NAME_MAX", CONSTANT, _POSIX_NAME_MAX },
{ "_POSIX_NGROUPS_MAX", CONSTANT, _POSIX_NGROUPS_MAX },
{ "_POSIX_OPEN_MAX", CONSTANT, _POSIX_OPEN_MAX },
- { "_POSIX_PATH_MAX", CONSTANT, _POSIX_PIPE_BUF },
+ { "_POSIX_PATH_MAX", CONSTANT, _POSIX_PATH_MAX },
{ "_POSIX_PIPE_BUF", CONSTANT, _POSIX_PIPE_BUF },
{ "_POSIX_SSIZE_MAX", CONSTANT, _POSIX_SSIZE_MAX },
{ "_POSIX_STREAM_MAX", CONSTANT, _POSIX_STREAM_MAX },