3515. [port] '%T' is not portable in strftime(). [RT #32763]

This commit is contained in:
Mark Andrews 2013-03-06 15:34:10 +11:00
parent 40b42978b9
commit 550c92405f
2 changed files with 3 additions and 1 deletions

View file

@ -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

View file

@ -263,7 +263,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, "