From 0867f38ca21e55645e3d85adb12185a81c3a4bd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Kr=C3=BCger?= Date: Sat, 18 Dec 2021 15:07:28 +0100 Subject: [PATCH] core: lax bssid check to allow format strings --- package/gluon-core/check_site.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/gluon-core/check_site.lua b/package/gluon-core/check_site.lua index 9246cbce..dd3e8197 100644 --- a/package/gluon-core/check_site.lua +++ b/package/gluon-core/check_site.lua @@ -55,7 +55,7 @@ for _, config in ipairs({'wifi24', 'wifi5'}) do if need_table({config, 'ibss'}, nil, false) then need_string_match(in_domain({config, 'ibss', 'ssid'}), '^' .. ('.?'):rep(32) .. '$') - need_string_match(in_domain({config, 'ibss', 'bssid'}), '^%x[02468aAcCeE]:%x%x:%x%x:%x%x:%x%x:%x%x$') + -- need_string_match(in_domain({config, 'ibss', 'bssid'}), '^%x[02468aAcCeE]:%x%x:%x%x:%x%x:%x%x:%x%x$') need_one_of({config, 'ibss', 'mcast_rate'}, supported_rates, false) need_number({config, 'ibss', 'vlan'}, false) need_boolean({config, 'ibss', 'disabled'}, false)