From c459dc75c080dcbff6f9b9389344e11328dec411 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Tue, 8 Oct 2024 07:47:12 -0700 Subject: [PATCH] band: add "GB" as a valid alpha2 code The "UK" alpha2 code is not the official code for the United Kingdom but is a "reserved" code for compatibility. The official alpha2 is "GB" which is being added to the EU list. This fixes issues parsing neighbor reports, for example: src/station.c:parse_neighbor_report() Neighbor report received for xx:xx:xx:xx:xx:xx: ch 136 (oper class 3), MD not set Failed to find band with country string 'GB 32' and oper class 3, trying fallback src/station.c:station_add_neighbor_report_freqs() Ignored: unsupported oper class --- src/band.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/band.c b/src/band.c index 6891d06c..14daeb37 100644 --- a/src/band.c +++ b/src/band.c @@ -1426,7 +1426,7 @@ static const char *const oper_class_eu_codes[] = { "AL", "AM", "AT", "AZ", "BA", "BE", "BG", "BY", "CH", "CY", "CZ", "DE", "DK", "EE", "EL", "ES", "FI", "FR", "GE", "HR", "HU", "IE", "IS", "IT", "LI", "LT", "LU", "LV", "MD", "ME", "MK", "MT", "NL", "NO", "PL", "PT", - "RO", "RS", "RU", "SE", "SI", "SK", "TR", "UA", "UK" + "RO", "RS", "RU", "SE", "SI", "SK", "TR", "UA", "UK", "GB" }; /* Annex E, table E-1 */