Fix empty pmksa_cache_get()
The addition of the "spa" argument was missed in the empty inline
function.
Fixes: 9ff778fa4b
("Check for own address (SPA) match when finding PMKSA entries")
Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
3abd0c4719
commit
4840b45a26
1 changed files with 2 additions and 2 deletions
|
@ -109,8 +109,8 @@ static inline void pmksa_cache_deinit(struct rsn_pmksa_cache *pmksa)
|
|||
}
|
||||
|
||||
static inline struct rsn_pmksa_cache_entry *
|
||||
pmksa_cache_get(struct rsn_pmksa_cache *pmksa, const u8 *aa, const u8 *pmkid,
|
||||
const void *network_ctx, int akmp)
|
||||
pmksa_cache_get(struct rsn_pmksa_cache *pmksa, const u8 *aa, const u8 *spa,
|
||||
const u8 *pmkid, const void *network_ctx, int akmp)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue