From 237734ebc82f84d3d0c4c8591390d82f6aff89e3 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Sun, 3 Feb 2013 18:25:31 +0100 Subject: [PATCH] Fix timer signedness --- src/dhcpv6.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dhcpv6.c b/src/dhcpv6.c index 561cf83..0ca86c9 100644 --- a/src/dhcpv6.c +++ b/src/dhcpv6.c @@ -76,7 +76,7 @@ static struct dhcpv6_retx dhcpv6_retx[_DHCPV6_MSG_MAX] = { // Sockets static int sock = -1; static int ifindex = -1; -static time_t t1 = 0, t2 = 0, t3 = 0; +static int64_t t1 = 0, t2 = 0, t3 = 0; // IA states static int request_prefix = -1; -- 2.39.2