summaryrefslogtreecommitdiffhomepage
path: root/libs/uvl/luasrc/uvl.lua
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2008-11-04 16:11:25 +0000
committerJo-Philipp Wich <jow@openwrt.org>2008-11-04 16:11:25 +0000
commitd1796b2991d347d78cb02d95f09bc4c157b444cc (patch)
tree53f58d71ab74efc5014d8b1b0f4d7048a54a7c5b /libs/uvl/luasrc/uvl.lua
parent7aee80de5c325d49fe29b6d21b3cb36aa28a2730 (diff)
* luci/libs/uvl: fix option dependency error handling in case of different non-critical reasons
Diffstat (limited to 'libs/uvl/luasrc/uvl.lua')
-rw-r--r--libs/uvl/luasrc/uvl.lua4
1 files changed, 1 insertions, 3 deletions
diff --git a/libs/uvl/luasrc/uvl.lua b/libs/uvl/luasrc/uvl.lua
index 3963a64be..3b3186eb2 100644
--- a/libs/uvl/luasrc/uvl.lua
+++ b/libs/uvl/luasrc/uvl.lua
@@ -295,9 +295,7 @@ function UVL._validate_option( self, option, nodeps )
if not nodeps then
local ok, err = dependencies.check( self, option )
if not ok then
- if not err:is_all(ERR.ERR_DEP_NOTEQUAL) and
- not err:is_all(ERR.ERR_DEP_NOVALUE)
- then
+ if not err:is_all(ERR.ERR_DEP_NOTEQUAL,ERR.ERR_DEP_NOVALUE) then
option:error(err)
return false, option:errors()
else