From fc851fde9efadcab52dd211633c0010596fe3973 Mon Sep 17 00:00:00 2001 From: rwatson Date: Wed, 30 Oct 2002 00:04:31 +0000 Subject: 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 c424328..bff2e29 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; -- cgit v1.1