mirror of
https://github.com/apache/httpd.git
synced 2026-01-06 09:01:14 +03:00
Adapt to the rename of apr_explode_localtime to apr_time_exp_lt in APR.
Submitted by: Thom May <thom@planetarytramp.net> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94631 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -212,7 +212,7 @@ void ssl_log(server_rec *s, int level, const char *msg, ...)
|
||||
if (add & SSL_NO_TIMESTAMP)
|
||||
tstr[0] = NUL;
|
||||
else {
|
||||
apr_explode_localtime(&t, apr_time_now());
|
||||
apr_time_exp_lt(&t, apr_time_now());
|
||||
apr_strftime(tstr, &len, 80, "[%d/%b/%Y %H:%M:%S", &t);
|
||||
apr_snprintf(tstr + strlen(tstr), 80 - strlen(tstr), " %05d] ",
|
||||
(unsigned int)getpid());
|
||||
|
||||
Reference in New Issue
Block a user