Fix acient cut and paste error which made "_POSIX_PATH_MAX" actually
return "_POSIX_PIPE_BUF".
This commit is contained in:
parent
a55bfb4d51
commit
80346e7772
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: getconf.c,v 1.16 2002/08/04 18:06:54 soren Exp $ */
|
||||
/* $NetBSD: getconf.c,v 1.17 2002/08/05 06:24:23 tron Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996, 1998 The NetBSD Foundation, Inc.
|
||||
|
@ -38,7 +38,7 @@
|
|||
|
||||
#include <sys/cdefs.h>
|
||||
#ifndef lint
|
||||
__RCSID("$NetBSD: getconf.c,v 1.16 2002/08/04 18:06:54 soren Exp $");
|
||||
__RCSID("$NetBSD: getconf.c,v 1.17 2002/08/05 06:24:23 tron Exp $");
|
||||
#endif /* not lint */
|
||||
|
||||
#include <err.h>
|
||||
|
@ -84,7 +84,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_BUF },
|
||||
{ "_POSIX_PIPE_BUF", CONSTANT, _POSIX_PIPE_BUF },
|
||||
{ "_POSIX_SSIZE_MAX", CONSTANT, _POSIX_SSIZE_MAX },
|
||||
{ "_POSIX_STREAM_MAX", CONSTANT, _POSIX_STREAM_MAX },
|
||||
|
|
Loading…
Reference in New Issue