From: Mark Andrews Date: Wed, 6 Mar 2013 04:34:10 +0000 (+1100) Subject: 3515. [port] '%T' is not portable in strftime(). [RT #32763] X-Git-Tag: v9.9.3b2~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=badb0596d30f25adfb1187908d4b048a0684fddb;p=thirdparty%2Fbind9.git 3515. [port] '%T' is not portable in strftime(). [RT #32763] (cherry picked from commit 550c92405fc1df47e725f2ecbaa5154c9239fcfd) --- diff --git a/CHANGES b/CHANGES index b3fd80c387b..0b7bb6d662d 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,5 @@ +3515. [port] '%T' is not portable in strftime(). [RT #32763] + 3514. [bug] The ranges for valid key sizes in ddns-confgen and rndc-confgen were too constrained. Keys up to 512 bits are now allowed for most algorithms, and up diff --git a/bin/dig/dig.c b/bin/dig/dig.c index 203ed4eb940..6c99c98bef8 100644 --- a/bin/dig/dig.c +++ b/bin/dig/dig.c @@ -259,7 +259,7 @@ received(int bytes, isc_sockaddr_t *from, dig_query_t *query) { time(&tnow); tmnow = *localtime(&tnow); if (strftime(time_str, sizeof(time_str), - "%a %b %d %T %Z %Y", &tmnow) > 0U) + "%a %b %d %H:%M:%S %Z %Y", &tmnow) > 0U) printf(";; WHEN: %s\n", time_str); if (query->lookup->doing_xfr) { printf(";; XFR size: %u records (messages %u, "