From: Shawn Routhier Date: Wed, 29 Dec 2010 21:40:33 +0000 (+0000) Subject: Clean up for 22033 - remove printing the seconds value X-Git-Tag: v4_3_0a1~224 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9043399dc37f81fae4c32f04442b2b1a5878cdcc;p=thirdparty%2Fdhcp.git Clean up for 22033 - remove printing the seconds value to avoid problems with printing it in an OS agnostic manner. --- diff --git a/common/dispatch.c b/common/dispatch.c index 76080bd4c..efb0dba39 100644 --- a/common/dispatch.c +++ b/common/dispatch.c @@ -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) {