diff options
author | Philipp Borgers <borgers@mi.fu-berlin.de> | 2018-10-25 21:54:42 +0200 |
---|---|---|
committer | Philipp Borgers <borgers@mi.fu-berlin.de> | 2018-10-25 21:56:06 +0200 |
commit | 5f65547dfd59ae3fe9e45f0ac4bc4a06808b4847 (patch) | |
tree | de569fed77af0e1f369d149419380e419c625fad /applications/luci-app-olsr-services/luasrc | |
parent | 35b543e270428357d22ede5ceff39653b3371a1b (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-olsr-services/luasrc')
-rw-r--r-- | applications/luci-app-olsr-services/luasrc/view/freifunk-services/services.htm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-olsr-services/luasrc/view/freifunk-services/services.htm b/applications/luci-app-olsr-services/luasrc/view/freifunk-services/services.htm index 94f01cb51..91624f3b3 100644 --- a/applications/luci-app-olsr-services/luasrc/view/freifunk-services/services.htm +++ b/applications/luci-app-olsr-services/luasrc/view/freifunk-services/services.htm @@ -16,7 +16,7 @@ local uci = require "luci.model.uci".cursor() local ip = require "luci.ip" uci:foreach("olsrd", "LoadPlugin", function(s) - if s.library == "olsrd_nameservice.so.0.3" then + if s.library == "olsrd_nameservice" then local services_file=s.services_file if services_file and fs.access(services_file) then has_services = true |