1
0
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:
Sander Striker
2002-04-13 12:02:38 +00:00
parent 11c09e84f5
commit 6e8efec657
5 changed files with 11 additions and 11 deletions

View File

@@ -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());