From: Jouni Malinen Date: Tue, 5 Nov 2013 22:00:58 +0000 (+0200) Subject: Remove a compiler warning from -O0 build X-Git-Tag: hostap_2_1~620 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1281c0ab692592a02282e040271ae17a05488062;p=thirdparty%2Fhostap.git 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 --- diff --git a/src/radius/radius_das.c b/src/radius/radius_das.c index 8e5988dd3..418b1605c 100644 --- a/src/radius/radius_das.c +++ b/src/radius/radius_das.c @@ -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",