summaryrefslogtreecommitdiffhomepage
path: root/protocols/luci-proto-relay
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2017-11-10 14:20:50 +0100
committerJo-Philipp Wich <jo@mein.io>2017-11-10 14:20:53 +0100
commit932bae98738746e11d8b1b0bd9ac86009dd34452 (patch)
tree098d23008d0c203ee5314c945565e5ebefa9fd43 /protocols/luci-proto-relay
parente0a7227a0c61217d97597b18b9afe63ea341d9e6 (diff)
protocols: fix various interface patterns
The virtual interface match patterns of various protocols were improperly quoted, causing them to over- or undermatch. Follow up of #1435. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'protocols/luci-proto-relay')
-rw-r--r--protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua b/protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua
index 5d40fc72d..a2dabf9af 100644
--- a/protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua
+++ b/protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua
@@ -4,7 +4,7 @@
local netmod = luci.model.network
local device = luci.util.class(netmod.interface)
-netmod:register_pattern_virtual("^relay-%w")
+netmod:register_pattern_virtual("^relay%-%w")
local proto = netmod:register_protocol("relay")