Avoid -Wshadow warnings from older gcc versions
It looks like gcc 4.8.2 would warn about these with -Wshadow, but 4.6.3 did. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
a193231dfb
commit
49e3eea8d9
3 changed files with 8 additions and 8 deletions
|
@ -50,7 +50,7 @@ static void xorend(u8 *a, int alen, const u8 *b, int blen)
|
|||
}
|
||||
|
||||
|
||||
static void pad(u8 *pad, const u8 *addr, size_t len)
|
||||
static void pad_block(u8 *pad, const u8 *addr, size_t len)
|
||||
{
|
||||
os_memset(pad, 0, AES_BLOCK_SIZE);
|
||||
os_memcpy(pad, addr, len);
|
||||
|
@ -99,7 +99,7 @@ int aes_s2v(const u8 *key, size_t num_elem, const u8 *addr[],
|
|||
}
|
||||
|
||||
dbl(tmp);
|
||||
pad(tmp2, addr[i], len[i]);
|
||||
pad_block(tmp2, addr[i], len[i]);
|
||||
xor(tmp, tmp2);
|
||||
|
||||
return omac1_aes_128(key, tmp, sizeof(tmp), mac);
|
||||
|
|
|
@ -723,10 +723,10 @@ static int features_info_handler(struct nl_msg *msg, void *arg)
|
|||
static int check_feature(enum qca_wlan_vendor_features feature,
|
||||
struct features_info *info)
|
||||
{
|
||||
size_t index = feature / 8;
|
||||
size_t idx = feature / 8;
|
||||
|
||||
return (index < info->flags_len) &&
|
||||
(info->flags[index] & BIT(feature % 8));
|
||||
return (idx < info->flags_len) &&
|
||||
(info->flags[idx] & BIT(feature % 8));
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue