From c7c2a7954a97080f3c4dc739cd95c81aea8c273f Mon Sep 17 00:00:00 2001 From: Robert Watson Date: Wed, 30 Oct 2002 00:04:31 +0000 Subject: [PATCH] Fix a KASSERT bug that showed up only in the LINT build, not the module build, so I missed it in the merge. Pointed out by: sam --- sys/security/mac_biba/mac_biba.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/security/mac_biba/mac_biba.c b/sys/security/mac_biba/mac_biba.c index c4243281ea16..bff2e29fce16 100644 --- a/sys/security/mac_biba/mac_biba.c +++ b/sys/security/mac_biba/mac_biba.c @@ -224,7 +224,7 @@ mac_biba_subject_dominate_high(struct mac_biba *mac_biba) { struct mac_biba_element *element; - KASSERT((mac_biba->mb_single->mb_flags & MAC_BIBA_FLAG_SINGLE) != 0, + KASSERT((mac_biba->mb_single.mb_flags & MAC_BIBA_FLAG_SINGLE) != 0, ("mac_biba_single_in_range: mac_biba not single")); element = &mac_biba->mb_single;