summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-siitwizard/luasrc/model/cbi/siitwizard.lua
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2018-11-02 13:53:08 +0100
committerGitHub <noreply@github.com>2018-11-02 13:53:08 +0100
commit42eb9cf7587e1332ae0d69a52968eaedffcbbcb4 (patch)
tree329c3e3b774ec089209d5a31dd2f0a2259c5cf85 /applications/luci-app-siitwizard/luasrc/model/cbi/siitwizard.lua
parentd1c24c8972f9323aa616c142019cbc89d6dd0272 (diff)
parent5f65547dfd59ae3fe9e45f0ac4bc4a06808b4847 (diff)
Merge pull request #2250 from booo/remove-olsrd-library-version-numbers
get rid of library version numbers in luci olsrd code
Diffstat (limited to 'applications/luci-app-siitwizard/luasrc/model/cbi/siitwizard.lua')
-rw-r--r--applications/luci-app-siitwizard/luasrc/model/cbi/siitwizard.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-app-siitwizard/luasrc/model/cbi/siitwizard.lua b/applications/luci-app-siitwizard/luasrc/model/cbi/siitwizard.lua
index 413b3b481f..f3501e5d72 100644
--- a/applications/luci-app-siitwizard/luasrc/model/cbi/siitwizard.lua
+++ b/applications/luci-app-siitwizard/luasrc/model/cbi/siitwizard.lua
@@ -342,9 +342,9 @@ function mode.write(self, section, value)
-- txtinfo v6 & olsrd nameservice
uci:foreach("olsrd", "LoadPlugin",
function(s)
- if s.library == "olsrd_txtinfo.so.0.1" then
+ if s.library == "olsrd_txtinfo" then
uci:set("olsrd", s['.name'], "accept", "::1")
- elseif s.library == "olsrd_nameservice.so.0.3" then
+ elseif s.library == "olsrd_nameservice" then
uci:set("olsrd", s['.name'], "name", hostname)
end
end)