dhclient: fix build on i386

Only i386 still uses a 32-bit time_t.  I knew this, and I still failed
to compile-test on i386.  My bad.

Reported by:	cy
Fixes:		c210cac00f ("dhclient: fix time parsing for leases...")
Sponsored by:	Dell EMC Isilon
This commit is contained in:
Eric van Gyzen 2023-07-10 15:03:39 -05:00
parent 46f59593c5
commit eb8d2e123d

View file

@ -343,7 +343,9 @@ parse_date_valid(void)
abort();
parse_date_helper(" 2 2024/7/2 20:25:50;\n", 1719951950);
#ifndef __i386__
parse_date_helper(" 1 2091/7/2 20:25:50;\n", 3834246350);
#endif
}
int