From: Felix Fietkau Date: Wed, 14 Dec 2016 11:33:33 +0000 (+0100) Subject: Fix wpa_supplicant build error with IEEE8021X_EAPOL unset X-Git-Tag: hostap_2_7~2010 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0babae87ad71e6a7293b58d37c67a2389c312d22;p=thirdparty%2Fhostap.git Fix wpa_supplicant build error with IEEE8021X_EAPOL unset Add missing inline stubs for newly added functions. Fixes: 3459381dd260 ("External persistent storage for PMKSA cache entries") Signed-off-by: Felix Fietkau --- diff --git a/src/rsn_supp/pmksa_cache.h b/src/rsn_supp/pmksa_cache.h index 8237e63a9..adc251a08 100644 --- a/src/rsn_supp/pmksa_cache.h +++ b/src/rsn_supp/pmksa_cache.h @@ -107,6 +107,19 @@ static inline int pmksa_cache_list(struct rsn_pmksa_cache *pmksa, char *buf, return -1; } +static inline struct rsn_pmksa_cache_entry * +pmksa_cache_head(struct rsn_pmksa_cache *pmksa) +{ + return NULL; +} + +static inline struct rsn_pmksa_cache_entry * +pmksa_cache_add_entry(struct rsn_pmksa_cache *pmksa, + struct rsn_pmksa_cache_entry *entry) +{ + return NULL; +} + static inline struct rsn_pmksa_cache_entry * pmksa_cache_add(struct rsn_pmksa_cache *pmksa, const u8 *pmk, size_t pmk_len, const u8 *pmkid, const u8 *kck, size_t kck_len,