mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-28 18:28:23 -05:00
Remove a compiler warning from -O0 build
It looks like abs() result is signed and gcc warns about this when running a build with -O0 but not with -O2. Signed-hostap: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
parent
2b6623ab13
commit
1281c0ab69
@ -200,7 +200,8 @@ static void radius_das_receive(int sock, void *eloop_ctx, void *sock_ctx)
|
||||
(u8 *) &val, 4);
|
||||
if (res == 4) {
|
||||
u32 timestamp = ntohl(val);
|
||||
if (abs(now.sec - timestamp) > das->time_window) {
|
||||
if ((unsigned int) abs(now.sec - timestamp) >
|
||||
das->time_window) {
|
||||
wpa_printf(MSG_DEBUG, "DAS: Unacceptable "
|
||||
"Event-Timestamp (%u; local time %u) in "
|
||||
"packet from %s:%d - drop",
|
||||
|
Loading…
Reference in New Issue
Block a user