From 80346e777213cd690f1648d0bee66f16edd66af5 Mon Sep 17 00:00:00 2001 From: tron Date: Mon, 5 Aug 2002 06:24:23 +0000 Subject: [PATCH] Fix acient cut and paste error which made "_POSIX_PATH_MAX" actually return "_POSIX_PIPE_BUF". --- usr.bin/getconf/getconf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr.bin/getconf/getconf.c b/usr.bin/getconf/getconf.c index ee432bf5c48d..061c8f4c346b 100644 --- a/usr.bin/getconf/getconf.c +++ b/usr.bin/getconf/getconf.c @@ -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 #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 @@ -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 },