]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
P2P: Fix operation channel configuration update
authorJouni Malinen <jouni@qca.qualcomm.com>
Tue, 10 Sep 2013 05:14:27 +0000 (22:14 -0700)
committerJouni Malinen <j@w1.fi>
Sat, 14 Sep 2013 18:24:56 +0000 (11:24 -0700)
There was already a CFG_CHANGED_P2P_OPER_CHANNEL handler function, but
this flag was not set when the p2p_oper_reg_class or p2p_oper_channel
parameters were changed.

Signed-hostap: Jouni Malinen <jouni@qca.qualcomm.com>

wpa_supplicant/config.c

index d666c91a8a8b3740aa294a38410052f378cf4e02..5c9f39e99ce8bd672818ae8cf737c54c1d14985f 100644 (file)
@@ -3125,8 +3125,8 @@ static const struct global_parse_data global_fields[] = {
        { FUNC(sec_device_type), CFG_CHANGED_SEC_DEVICE_TYPE },
        { INT(p2p_listen_reg_class), 0 },
        { INT(p2p_listen_channel), 0 },
-       { INT(p2p_oper_reg_class), 0 },
-       { INT(p2p_oper_channel), 0 },
+       { INT(p2p_oper_reg_class), CFG_CHANGED_P2P_OPER_CHANNEL },
+       { INT(p2p_oper_channel), CFG_CHANGED_P2P_OPER_CHANNEL },
        { INT_RANGE(p2p_go_intent, 0, 15), 0 },
        { STR(p2p_ssid_postfix), CFG_CHANGED_P2P_SSID_POSTFIX },
        { INT_RANGE(persistent_reconnect, 0, 1), 0 },