PERFORCE change 113364 for review
    Todd Miller 
    millert at FreeBSD.org
       
    Mon Jan 22 16:24:21 UTC 2007
    
    
  
http://perforce.freebsd.org/chv.cgi?CH=113364
Change 113364 by millert at millert_macbook on 2007/01/22 16:23:31
	The parameter to avc_has_perm() in sebsd_inpcb_check_deliver()
	were backwards.
Affected files ...
.. //depot/projects/trustedbsd/sedarwin8/policies/sedarwin/sedarwin/sebsd.c#76 edit
Differences ...
==== //depot/projects/trustedbsd/sedarwin8/policies/sedarwin/sedarwin/sebsd.c#76 (text+ko) ====
@@ -3197,7 +3197,7 @@
 	}
 
 	/* XXX - use an audit struct so we can log useful info */
-	error = avc_has_perm(msec->sid, ifsec->sid, SECCLASS_NETIF,
+	error = avc_has_perm(ifsec->sid, msec->sid, SECCLASS_NETIF,
 	    perm, NULL);
 	return (error);
 }
    
    
More information about the p4-projects
mailing list