CVSROOT: /cvs Module name: src Changes by: [email protected] 2012/08/18 09:27:56
Modified files:
sbin/dhclient : dhclient.c
Log message:
Don't try to printf() a time_t value with %d. Cast to (int) just
in case time_t ever changes size. Values in these cases are intervals,
i.e. (time_t - time_t) so int/%d will be fine.
Part of larger time_t rectification diff from guenther@.
