diff options
author | Steven Barth <steven@midlink.org> | 2015-10-02 11:34:12 +0200 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2015-10-02 11:34:12 +0200 |
commit | ecd460f79f34843904b16d45b42079d60b30bd70 (patch) | |
tree | 8c75a083978f45b924eb7b6fcdd17d30fe2e4e13 /protocols | |
parent | 8030cc6f4bc386699b8214788440cdaf1f37acdd (diff) |
proto_map: fix ealen range
Signed-off-by: Steven Barth <steven@midlink.org>
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua b/protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua index 2f8108ef1..37d4ec901 100644 --- a/protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua +++ b/protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua @@ -50,7 +50,7 @@ ip6prefixlen.datatype = "range(0,64)" s:taboption("general", Value, "ealen", - translate("EA-bits length")).datatype = "range(0,16)" + translate("EA-bits length")).datatype = "range(0,48)" s:taboption("general", Value, "psidlen", translate("PSID-bits length")).datatype = "range(0,16)" |