Add a default case with assert() just in case.

This commit is contained in:
Kurt Zeilenga 2002-01-14 17:25:13 +00:00
parent 9d307b4242
commit f89308915a

View file

@ -1131,6 +1131,10 @@ acl_check_modlist(
}
}
break;
default:
assert( 0 );
return( 0 );
}
}