Introduced new helper function is_zero_ether_addr()
Use this inline function to replace os_memcmp(addr, "\x00\x00\x00\x00\x00\x00", ETH_ALEN) == 0.
This commit is contained in:
parent
957ed801e9
commit
a8e16edc86
12 changed files with 18 additions and 26 deletions
|
@ -428,6 +428,10 @@ TCHAR * wpa_strdup_tchar(const char *str);
|
|||
|
||||
const char * wpa_ssid_txt(const u8 *ssid, size_t ssid_len);
|
||||
|
||||
static inline int is_zero_ether_addr(const u8 *a)
|
||||
{
|
||||
return !(a[0] | a[1] | a[2] | a[3] | a[4] | a[5]);
|
||||
}
|
||||
|
||||
#include "wpa_debug.h"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue