aboutsummaryrefslogtreecommitdiff
path: root/web/apache/request.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'web/apache/request.cxx')
-rw-r--r--web/apache/request.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/web/apache/request.cxx b/web/apache/request.cxx
index f69fedc..b4fb080 100644
--- a/web/apache/request.cxx
+++ b/web/apache/request.cxx
@@ -29,10 +29,12 @@
#include <algorithm> // min()
#include <butl/optional>
+#include <butl/timestamp>
#include <web/mime-url-encoding>
using namespace std;
+using namespace butl;
namespace web
{
@@ -519,10 +521,8 @@ namespace web
if (max_age)
{
- chrono::system_clock::time_point tp (
- chrono::system_clock::now () + *max_age);
-
- time_t t (chrono::system_clock::to_time_t (tp));
+ timestamp tp (timestamp::clock::now () + *max_age);
+ time_t t (timestamp::clock::to_time_t (tp));
// Assume global locale is not changed and still "C".
//