From: Steven Barth Date: Sun, 3 Feb 2013 17:25:31 +0000 (+0100) Subject: Fix timer signedness X-Git-Tag: debian/1.1+git20160131-1~177 X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=237734ebc82f84d3d0c4c8591390d82f6aff89e3;hp=66216b3e5a55be3cc78179155a8f0f2dca79d172;p=odhcp6c.git Fix timer signedness --- 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;