2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-28 12:57:42 +00:00

Clean up for 22033 - remove printing the seconds value

to avoid problems with printing it in an OS agnostic manner.
This commit is contained in:
Shawn Routhier 2010-12-29 21:40:33 +00:00
parent 0c9d3a8108
commit 9043399dc3

View File

@ -254,8 +254,8 @@ void add_timeout (when, where, what, ref, unref)
sec = 0;
usec = 0;
} else if (sec > DHCP_SEC_MAX) {
log_error("Timeout requested too large %lld "
"reducing to 2^^32-1", sec);
log_error("Timeout requested too large "
"reducing to 2^^32-1");
sec = DHCP_SEC_MAX;
usec = 0;
} else if (usec < 0) {