Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 4 Oct 2006 18:01:09 GMT
From:      Todd Miller <millert@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 107254 for review
Message-ID:  <200610041801.k94I19Iv026515@repoman.freebsd.org>

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

Change 107254 by millert@millert_macbook on 2006/10/04 18:01:02

	Fix logic thinko; == that should have been !=

Affected files ...

.. //depot/projects/trustedbsd/sedarwin8/darwin/xnu/security/mac_base.c#16 edit

Differences ...

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

@@ -1148,7 +1148,7 @@
 	element_list = &mac_static_label_element_list;
 element_loop:
 	LIST_FOREACH(mle, element_list, mle_list) {
-		if (strcmp(element_name, mle->mle_name) == 0)
+		if (strcmp(element_name, mle->mle_name) != 0)
 			continue;
 		LIST_FOREACH(mll, &mle->mle_listeners, mll_list) {
 			mpc = mac_policy_list.entries[mll->mll_handle].mpc;



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