Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/getconf Fix acient cut and paste error which made "_...



details:   https://anonhg.NetBSD.org/src/rev/c7676e8a37ad
branches:  trunk
changeset: 534875:c7676e8a37ad
user:      tron <tron%NetBSD.org@localhost>
date:      Mon Aug 05 06:24:23 2002 +0000

description:
Fix acient cut and paste error which made "_POSIX_PATH_MAX" actually
return "_POSIX_PIPE_BUF".

diffstat:

 usr.bin/getconf/getconf.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 33564c20f4d8 -r c7676e8a37ad usr.bin/getconf/getconf.c
--- a/usr.bin/getconf/getconf.c Mon Aug 05 02:56:58 2002 +0000
+++ b/usr.bin/getconf/getconf.c Mon Aug 05 06:24:23 2002 +0000
@@ -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 @@
   { "_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       },



Home | Main Index | Thread Index | Old Index