Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 3 Oct 2006 14:35:09 GMT
From:      Todd Miller <millert@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 107176 for review
Message-ID:  <200610031435.k93EZ9eT016357@repoman.freebsd.org>

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

Change 107176 by millert@millert_macbook on 2006/10/03 14:34:15

	Replace an occurrence of EOPNOTSUPP that should be ENOTSUP.
	EOPNOTSUPP means "Operation not supported on socket" but
	previously had been defined in terms of ENOTSUP.  It was
	changed to have its own value for Unix '03 compliance

Affected files ...

.. //depot/projects/trustedbsd/sedarwin8/darwin/xnu/security/mac_vfs.c#7 edit

Differences ...

==== //depot/projects/trustedbsd/sedarwin8/darwin/xnu/security/mac_vfs.c#7 (text+ko) ====

@@ -1106,7 +1106,7 @@
 	}
 
 	if ((vp->v_mount->mnt_flag & MNT_MULTILABEL) == 0)
-		return (EOPNOTSUPP);
+		return (ENOTSUP);
 
 	/*
 	 * Multi-phase commit.  First check the policies to confirm the



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