]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Update for 22033 - Remove printing of seconds value
authorShawn Routhier <sar@isc.org>
Wed, 29 Dec 2010 21:44:26 +0000 (21:44 +0000)
committerShawn Routhier <sar@isc.org>
Wed, 29 Dec 2010 21:44:26 +0000 (21:44 +0000)
to avoid issues with printing it in an OS agnostic way.

common/dispatch.c

index 76080bd4c9069db4d872552bcee6841b02f0d36f..efb0dba39935927248e58dfb3d5cc1947d134e06 100644 (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) {