From owner-cvs-src@FreeBSD.ORG  Fri Jun 23 18:33:34 2006
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
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 C4B7716A494;
	Fri, 23 Jun 2006 18:33:34 +0000 (UTC)
	(envelope-from keramida@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 9422A43D45;
	Fri, 23 Jun 2006 18:33:34 +0000 (GMT)
	(envelope-from keramida@FreeBSD.org)
Received: from repoman.freebsd.org (localhost [127.0.0.1])
	by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k5NIXYL9041051;
	Fri, 23 Jun 2006 18:33:34 GMT
	(envelope-from keramida@repoman.freebsd.org)
Received: (from keramida@localhost)
	by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k5NIXYEL041050;
	Fri, 23 Jun 2006 18:33:34 GMT (envelope-from keramida)
Message-Id: <200606231833.k5NIXYEL041050@repoman.freebsd.org>
From: Giorgos Keramidas <keramida@FreeBSD.org>
Date: Fri, 23 Jun 2006 18:33:34 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: RELENG_6
Cc: 
Subject: cvs commit: src/lib/libc/sys chflags.2
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 23 Jun 2006 18:33:34 -0000

keramida    2006-06-23 18:33:34 UTC

  FreeBSD src repository (doc committer)

  Modified files:        (Branch: RELENG_6)
    lib/libc/sys         chflags.2 
  Log:
  MFC 1.26 and bump date.
  
  # * Document the fact that non-superusers cannot change file flags for
  #   objects with SF_IMMUTABLE, SF_APPEND, or SF_NOUNLINK.
  # * Document that non-superusers cannot set or clear any SF_* flag
  #   (setting fails with EPERM, clearing is silently ignored).
  # * Document that superusers cannot change any flag if one of
  #   SF_IMMUTABLE, SF_APPEND, SF_NOUNLINK is set and securelevel is
  #   greater than 0.
  # * Document SF_SNAPSHOT and note that it is maintained by the
  #   system and is, for this reason, impossible to set to clear by
  #   any user.
  #
  # PR:             docs/33877
  # Submitted by:   harti
  # Help by:        George Marsellis <gam9478@njit.edu>
  # MFC after:      1 week
  
  Revision  Changes    Path
  1.25.8.1  +48 -3     src/lib/libc/sys/chflags.2