From owner-cvs-src@FreeBSD.ORG Thu Jul 8 01:35:10 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4220D16A4CE; Thu, 8 Jul 2004 01:35:10 +0000 (GMT) Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [128.30.28.20]) by mx1.FreeBSD.org (Postfix) with ESMTP id C661943D68; Thu, 8 Jul 2004 01:35:09 +0000 (GMT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: from khavrinen.lcs.mit.edu (localhost [IPv6:::1]) by khavrinen.lcs.mit.edu (8.12.9/8.12.9) with ESMTP id i681XnkP041063 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK CN=khavrinen.lcs.mit.edu issuer=SSL+20Client+20CA); Wed, 7 Jul 2004 21:34:00 -0400 (EDT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.12.9/8.12.9/Submit) id i681XnxH041060; Wed, 7 Jul 2004 21:33:49 -0400 (EDT) (envelope-from wollman) Date: Wed, 7 Jul 2004 21:33:49 -0400 (EDT) From: Garrett Wollman Message-Id: <200407080133.i681XnxH041060@khavrinen.lcs.mit.edu> To: Alfred Perlstein In-Reply-To: <20040707233455.GI95729@elvis.mu.org> References: <200407072047.i67Klgqu082069@repoman.freebsd.org> <200407072225.i67MP03s039814@khavrinen.lcs.mit.edu> <20040707233455.GI95729@elvis.mu.org> X-Spam-Score: -19.8 () IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES,REPLY_WITH_QUOTES X-Scanned-By: MIMEDefang 2.37 cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: Garrett Wollman Subject: Re: cvs commit: src/lib/libc/sys pathconf.2 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jul 2004 01:35:10 -0000 < said: > if _PC_NO_TRUNC returns 1 then an application should assume that > names longer than 14 characters (_POSIX_NAME_MAX) are truncated??? No. Under obsolete versions of POSIX, if {NO_TRUNC} is nonzero, an application should assume that pathname components longer than {NAME_MAX} are not truncated, but instead result in the [ENAMETOOLONG] error. Under the current version of POSIX, [ENAMETOOLONG] is mandatory for all systems; this was an obsolete option to allow for the behavior of the V7 filesystem, which has been phased out. -GAWollman