mirror of
https://github.com/apache/httpd.git
synced 2025-08-07 04:02:58 +03:00
Fix logging of SSL session cache timeout value (at TRACE2 level).
Inadvertent side effect of r907918, where the timeout calculation in ssl_callback_NewSessionCacheEntry was slightly modified. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1510098 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -1700,7 +1700,7 @@ static void ssl_session_log(server_rec *s,
|
|||||||
|
|
||||||
if (timeout) {
|
if (timeout) {
|
||||||
apr_snprintf(timeout_str, sizeof(timeout_str),
|
apr_snprintf(timeout_str, sizeof(timeout_str),
|
||||||
"timeout=%lds ", (timeout - time(NULL)));
|
"timeout=%lds ", timeout);
|
||||||
}
|
}
|
||||||
|
|
||||||
ap_log_error(APLOG_MARK, APLOG_TRACE2, 0, s,
|
ap_log_error(APLOG_MARK, APLOG_TRACE2, 0, s,
|
||||||
|
Reference in New Issue
Block a user