]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Adapt to the rename of apr_explode_localtime to apr_time_exp_lt in APR.
authorSander Striker <striker@apache.org>
Sat, 13 Apr 2002 12:02:38 +0000 (12:02 +0000)
committerSander Striker <striker@apache.org>
Sat, 13 Apr 2002 12:02:38 +0000 (12:02 +0000)
Submitted by: Thom May <thom@planetarytramp.net>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@94631 13f79535-47bb-0310-9956-ffa450edef68

ssl_engine_log.c

index 014dac69c78b0a44c8b63987cca4065939eada7c..e30a3b817b39b892789bc642df1fff08e86963a4 100644 (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());