OpenWrt – Diff between revs 2 and 3
?pathlinks?
Rev 2 | Rev 3 | |||
---|---|---|---|---|
Line 1... | Line 1... | |||
1 | --- a/src/common/wpa_common.c |
1 | --- a/src/common/wpa_common.c |
|
2 | +++ b/src/common/wpa_common.c |
2 | +++ b/src/common/wpa_common.c |
|
3 | @@ -2042,6 +2042,31 @@ u32 wpa_akm_to_suite(int akm) |
3 | @@ -1849,6 +1849,31 @@ u32 wpa_akm_to_suite(int akm) |
|
4 | } |
4 | } |
|
Line 5... | Line 5... | |||
5 | |
5 | |
|
6 | |
6 | |
|
Line 30... | Line 30... | |||
30 | + |
30 | + |
|
31 | + |
31 | + |
|
32 | int wpa_compare_rsn_ie(int ft_initial_assoc, |
32 | int wpa_compare_rsn_ie(int ft_initial_assoc, |
|
33 | const u8 *ie1, size_t ie1len, |
33 | const u8 *ie1, size_t ie1len, |
|
34 | const u8 *ie2, size_t ie2len) |
34 | const u8 *ie2, size_t ie2len) |
|
35 | @@ -2049,8 +2074,19 @@ int wpa_compare_rsn_ie(int ft_initial_as |
35 | @@ -1856,8 +1881,19 @@ int wpa_compare_rsn_ie(int ft_initial_as |
|
36 | if (ie1 == NULL || ie2 == NULL) |
36 | if (ie1 == NULL || ie2 == NULL) |
|
37 | return -1; |
37 | return -1; |
|
Line 38... | Line 38... | |||
38 | |
38 | |
|
39 | - if (ie1len == ie2len && os_memcmp(ie1, ie2, ie1len) == 0) |
39 | - if (ie1len == ie2len && os_memcmp(ie1, ie2, ie1len) == 0) |