From a670e29bc5d8d96b09e67e5ebd1a1bd5aa247bd3 Mon Sep 17 00:00:00 2001 From: Sander Striker Date: Sat, 13 Apr 2002 12:02:38 +0000 Subject: [PATCH] Adapt to the rename of apr_explode_localtime to apr_time_exp_lt in APR. Submitted by: Thom May git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@94631 13f79535-47bb-0310-9956-ffa450edef68 --- ssl_engine_log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssl_engine_log.c b/ssl_engine_log.c index 014dac69c78..e30a3b817b3 100644 --- a/ssl_engine_log.c +++ b/ssl_engine_log.c @@ -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()); -- 2.47.2