diff options
author | Jo-Philipp Wich <jo@mein.io> | 2017-11-10 14:20:50 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2017-11-10 14:20:53 +0100 |
commit | 932bae98738746e11d8b1b0bd9ac86009dd34452 (patch) | |
tree | 098d23008d0c203ee5314c945565e5ebefa9fd43 /protocols/luci-proto-ppp | |
parent | e0a7227a0c61217d97597b18b9afe63ea341d9e6 (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-ppp')
-rw-r--r-- | protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua b/protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua index 7bbd78fa1..1bcbd4808 100644 --- a/protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua +++ b/protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua @@ -90,5 +90,5 @@ for _, p in ipairs({"ppp", "pptp", "pppoe", "pppoa", "3g", "l2tp", "pppossh"}) d end end - netmod:register_pattern_virtual("^%s-%%w" % p) + netmod:register_pattern_virtual("^%s%%-%%w" % p) end |