svn commit: r269019 - head/sys/ufs/ufs

Warner Losh imp at FreeBSD.org
Wed Jul 23 16:18:55 UTC 2014


Author: imp
Date: Wed Jul 23 16:18:54 2014
New Revision: 269019
URL: http://svnweb.freebsd.org/changeset/base/269019

Log:
  Simplify comment to remove multiple negative and passive voice.

Modified:
  head/sys/ufs/ufs/ufs_vnops.c

Modified: head/sys/ufs/ufs/ufs_vnops.c
==============================================================================
--- head/sys/ufs/ufs/ufs_vnops.c	Wed Jul 23 16:18:51 2014	(r269018)
+++ head/sys/ufs/ufs/ufs_vnops.c	Wed Jul 23 16:18:54 2014	(r269019)
@@ -382,8 +382,7 @@ relock:
 
 	/*
 	 * If immutable bit set, nobody gets to write it.  "& ~VADMIN_PERMS"
-	 * is here, because without it, * it would be impossible for the owner
-	 * to remove the IMMUTABLE flag.
+	 * permits the owner of the file to remove the IMMUTABLE flag.
 	 */
 	if ((accmode & (VMODIFY_PERMS & ~VADMIN_PERMS)) &&
 	    (ip->i_flags & (IMMUTABLE | SF_SNAPSHOT)))


More information about the svn-src-all mailing list