From 8d75d524f99be11e722ae05bd714450388659e4c Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Tue, 4 Nov 2008 16:00:58 +0000 Subject: * luci/libs/uvl: more sensitive checking of error reasons in evaluation of option dependencies --- libs/uvl/luasrc/uvl.lua | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'libs/uvl/luasrc/uvl.lua') diff --git a/libs/uvl/luasrc/uvl.lua b/libs/uvl/luasrc/uvl.lua index 1e9bea4a4..3963a64be 100644 --- a/libs/uvl/luasrc/uvl.lua +++ b/libs/uvl/luasrc/uvl.lua @@ -295,9 +295,8 @@ function UVL._validate_option( self, option, nodeps ) if not nodeps then local ok, err = dependencies.check( self, option ) if not ok then - -- XXX: maybe this needs to be more specific - if not err:is(ERR.ERR_DEP_NOTEQUAL) and - not err:is(ERR.ERR_DEP_NOVALUE) + if not err:is_all(ERR.ERR_DEP_NOTEQUAL) and + not err:is_all(ERR.ERR_DEP_NOVALUE) then option:error(err) return false, option:errors() -- cgit v1.2.3