Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 25 Jun 2009 15:36:14 GMT
From:      Edward Tomasz Napierala <trasz@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 165169 for review
Message-ID:  <200906251536.n5PFaERD010896@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=165169

Change 165169 by trasz@trasz_victim on 2009/06/25 15:36:02

	Fix flag checking.
	
	Submitted by:	antoine@

Affected files ...

.. //depot/projects/soc2008/trasz_nfs4acl/sys/ufs/ffs/ffs_vfsops.c#21 edit

Differences ...

==== //depot/projects/soc2008/trasz_nfs4acl/sys/ufs/ffs/ffs_vfsops.c#21 (text+ko) ====

@@ -844,7 +844,7 @@
 #ifdef UFS_ACL
 		MNT_ILOCK(mp);
 
-		if (mp->mnt_flag | MNT_NFS4ACLS)
+		if (mp->mnt_flag & MNT_NFS4ACLS)
 			printf("WARNING: ACLs flag on fs conflicts with nfs4acls mount option; flag ignored\n");
 		else
 			mp->mnt_flag |= MNT_ACLS;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200906251536.n5PFaERD010896>