PERFORCE change 107176 for review
Todd Miller
millert at FreeBSD.org
Tue Oct 3 07:36:46 PDT 2006
http://perforce.freebsd.org/chv.cgi?CH=107176
Change 107176 by millert at 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
More information about the trustedbsd-cvs
mailing list