* modules/loggers/mod_log_config.c (log_request_time): Log
the minutes component of the timezone correctly.
PR: 23642
Submitted by: Hong-Gunn Chew <hgbug@gunnet.org>
Reviewed by: Joe Orton, Bill Stoddard, Jeff Trawick
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_2_0_BRANCH@101955
13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 2.0.49
+ *) mod_log_config: Log the minutes component of the timezone correctly.
+ PR 23642. [Hong-Gunn Chew <hgbug gunnet.org>]
+
*) mod_proxy: Fix cases where an invalid status-line could be sent
to the client. PR 23998. [Joe Orton]
APACHE 2.0 STATUS: -*-text-*-
-Last modified at [$Date: 2003/12/02 14:38:40 $]
+Last modified at [$Date: 2003/12/02 14:50:35 $]
Release:
+1: stoddard
+1 (concept): trawick (looks reasonable when compared with worker)
- * Fix timezone handling in mod_log_config. PR 23642
- modules/loggers/mod_log_config.c: r1.107
- +1: jorton, stoddard, trawick
-
* parsed_uri.port is only valid iff parsed_uri.port_str != NULL.
Old code simply checked if it was non-zero, not if it
was *valid*
"[%02d/%s/%d:%02d:%02d:%02d %c%.2d%.2d]",
xt.tm_mday, apr_month_snames[xt.tm_mon],
xt.tm_year+1900, xt.tm_hour, xt.tm_min, xt.tm_sec,
- sign, timz / (60*60), timz % (60*60));
+ sign, timz / (60*60), (timz % (60*60)) / 60);
cached_time->t_validate = t_seconds;
memcpy(&(request_time_cache[i]), cached_time,
sizeof(*cached_time));