From: Jouni Malinen Date: Sun, 11 Apr 2010 08:39:14 +0000 (+0300) Subject: Fix wpa_sm_has_ptk() no-WPA wrapper location X-Git-Tag: hostap_0_7_2~63 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e6ecca77373c5d35b60dc14221b4e79baf94b890;p=thirdparty%2Fhostap.git Fix wpa_sm_has_ptk() no-WPA wrapper location --- diff --git a/src/rsn_supp/wpa.h b/src/rsn_supp/wpa.h index 4faea8d5b..612f6456e 100644 --- a/src/rsn_supp/wpa.h +++ b/src/rsn_supp/wpa.h @@ -266,6 +266,11 @@ static inline void wpa_sm_drop_sa(struct wpa_sm *sm) { } +static inline int wpa_sm_has_ptk(struct wpa_sm *sm) +{ + return 0; +} + #endif /* CONFIG_NO_WPA */ #ifdef CONFIG_PEERKEY @@ -324,11 +329,6 @@ wpa_ft_validate_reassoc_resp(struct wpa_sm *sm, const u8 *ies, size_t ies_len, return -1; } -static inline int wpa_sm_has_ptk(struct wpa_sm *sm) -{ - return 0; -} - #endif /* CONFIG_IEEE80211R */ #endif /* WPA_H */