diff options
author | Jouni Malinen <j@w1.fi> | 2014-09-07 15:40:05 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2014-09-07 15:40:05 (GMT) |
commit | 10e7948f7689a46f54cd24dcc01e675048ee3109 (patch) | |
tree | 8f920f185dfc77ea44d218ef9f3c833c9d24fcdd /hostapd | |
parent | 3a413e0ed80f7e85b9b33a8b17691f6db247283a (diff) | |
download | hostap-10e7948f7689a46f54cd24dcc01e675048ee3109.zip hostap-10e7948f7689a46f54cd24dcc01e675048ee3109.tar.gz hostap-10e7948f7689a46f54cd24dcc01e675048ee3109.tar.bz2 |
Fix hostapd GET_CONFIG wpa_pairwise_cipher value
Copy-paste error ended up getting rsn_pairwise_cipher value for both
rsn_pairwise_cipher and wpa_pairwise_cipher (CID 72693).
Signed-off-by: Jouni Malinen <j@w1.fi>
Diffstat (limited to 'hostapd')
-rw-r--r-- | hostapd/ctrl_iface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hostapd/ctrl_iface.c b/hostapd/ctrl_iface.c index 9ce7829..591c395 100644 --- a/hostapd/ctrl_iface.c +++ b/hostapd/ctrl_iface.c @@ -1010,7 +1010,7 @@ static int hostapd_ctrl_iface_get_config(struct hostapd_data *hapd, return pos - buf; pos += ret; - ret = wpa_write_ciphers(pos, end, hapd->conf->rsn_pairwise, + ret = wpa_write_ciphers(pos, end, hapd->conf->wpa_pairwise, " "); if (ret < 0) return pos - buf; |