projects
/
oweals
/
luci.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
725acfb
)
libs/core: only consider enabled routes when finding wan interface
author
Jo-Philipp Wich
<jow@openwrt.org>
Fri, 29 Jun 2012 11:59:38 +0000
(11:59 +0000)
committer
Jo-Philipp Wich
<jow@openwrt.org>
Fri, 29 Jun 2012 11:59:38 +0000
(11:59 +0000)
libs/core/luasrc/model/network.lua
patch
|
blob
|
history
diff --git
a/libs/core/luasrc/model/network.lua
b/libs/core/luasrc/model/network.lua
index a0ff581249bb33aa95c7d7cf06049086f8aaaf07..df6bf1e3df00c19f68d1f1de0c9c219fc3214625 100644
(file)
--- a/
libs/core/luasrc/model/network.lua
+++ b/
libs/core/luasrc/model/network.lua
@@
-594,7
+594,7
@@
function get_status_by_route(self, addr, mask)
if s and s.route then
local rt
for _, rt in ipairs(s.route) do
- if rt.target == addr and rt.mask == mask then
+ if rt.
enabled and rt.
target == addr and rt.mask == mask then
return net, s
end
end