summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-siitwizard/luasrc/model/cbi
diff options
context:
space:
mode:
authorPhilipp Borgers <borgers@mi.fu-berlin.de>2018-10-25 21:54:42 +0200
committerPhilipp Borgers <borgers@mi.fu-berlin.de>2018-10-25 21:56:06 +0200
commit5f65547dfd59ae3fe9e45f0ac4bc4a06808b4847 (patch)
treede569fed77af0e1f369d149419380e419c625fad /applications/luci-app-siitwizard/luasrc/model/cbi
parent35b543e270428357d22ede5ceff39653b3371a1b (diff)
get rid of library version numbers in luci olsrd code
Signed-off-by: Philipp Borgers <borgers@mi.fu-berlin.de>
Diffstat (limited to 'applications/luci-app-siitwizard/luasrc/model/cbi')
-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)