From 4ba97b671533399e960f9230013f4678cc45b1d2 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Tue, 29 Aug 2017 00:00:39 +0300 Subject: Use system_clock instead of timestamp::clock --- web/apache/request.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'web') diff --git a/web/apache/request.cxx b/web/apache/request.cxx index da016b5..78e0fc0 100644 --- a/web/apache/request.cxx +++ b/web/apache/request.cxx @@ -521,8 +521,8 @@ namespace web if (max_age) { - timestamp tp (timestamp::clock::now () + *max_age); - time_t t (timestamp::clock::to_time_t (tp)); + timestamp tp (system_clock::now () + *max_age); + time_t t (system_clock::to_time_t (tp)); // Assume global locale is not changed and still "C". // -- cgit v1.1