diff options
author | Jouni Malinen <j@w1.fi> | 2015-11-23 21:34:52 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2015-11-23 21:34:52 (GMT) |
commit | 9e68742ef199f252329f4bc3bf4eec4234d27f7b (patch) | |
tree | cca94b6bc118978ea9393a06a536f2ba347d9e2b /src/rsn_supp | |
parent | eb926f1257b1b8e2812acb432df4e0568eeb898e (diff) | |
download | hostap-9e68742ef199f252329f4bc3bf4eec4234d27f7b.zip hostap-9e68742ef199f252329f4bc3bf4eec4234d27f7b.tar.gz hostap-9e68742ef199f252329f4bc3bf4eec4234d27f7b.tar.bz2 |
Fix CONFIG_NO_WPA=y build
Number of places were calling functions that are not included in
CONFIG_NO_WPA=y build anymore. Comment out such calls. In addition, pull
in SHA1 and MD5 for config_internal.c, if needed.
Signed-off-by: Jouni Malinen <j@w1.fi>
Diffstat (limited to 'src/rsn_supp')
-rw-r--r-- | src/rsn_supp/wpa.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/rsn_supp/wpa.h b/src/rsn_supp/wpa.h index 9bfe0e2..1d27453 100644 --- a/src/rsn_supp/wpa.h +++ b/src/rsn_supp/wpa.h @@ -181,7 +181,7 @@ static inline void wpa_sm_notify_disassoc(struct wpa_sm *sm) } static inline void wpa_sm_set_pmk(struct wpa_sm *sm, const u8 *pmk, - size_t pmk_len) + size_t pmk_len, const u8 *bssid) { } @@ -321,7 +321,8 @@ static inline void wpa_sm_set_rx_replay_ctr(struct wpa_sm *sm, } static inline void wpa_sm_set_ptk_kck_kek(struct wpa_sm *sm, const u8 *ptk_kck, - const u8 *ptk_kek) + size_t ptk_kck_len, + const u8 *ptk_kek, size_t ptk_kek_len) { } |