diff options
author | Jo-Philipp Wich <jo@mein.io> | 2018-11-02 13:53:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-02 13:53:08 +0100 |
commit | 42eb9cf7587e1332ae0d69a52968eaedffcbbcb4 (patch) | |
tree | 329c3e3b774ec089209d5a31dd2f0a2259c5cf85 /applications/luci-app-olsr-services | |
parent | d1c24c8972f9323aa616c142019cbc89d6dd0272 (diff) | |
parent | 5f65547dfd59ae3fe9e45f0ac4bc4a06808b4847 (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-olsr-services')
-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 94f01cb51c..91624f3b30 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 |