From: Jouni Malinen Date: Sun, 14 Jun 2015 14:40:10 +0000 (+0300) Subject: Remove duplicated country code from operating class lists X-Git-Tag: hostap_2_5~643 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a9a4841010acc5b95db2ea26e34808cb5ddcbb9e;p=thirdparty%2Fhostap.git Remove duplicated country code from operating class lists CA country code was included mistakenly (copy-paste..) in cn_op_class_cc while it was supposed to be included only in us_op_class_cc. In practice, this did not result in incorrect operation due to the us_op_class_cc list being checked first. Anyway, better fix cn_op_class_cc to avoid confusion here. Signed-off-by: Jouni Malinen --- diff --git a/src/common/ieee802_11_common.c b/src/common/ieee802_11_common.c index 284d6301b..82dd70742 100644 --- a/src/common/ieee802_11_common.c +++ b/src/common/ieee802_11_common.c @@ -580,7 +580,7 @@ static const char *const jp_op_class_cc[] = { }; static const char *const cn_op_class_cc[] = { - "CN", "CA", NULL + "CN", NULL };