aboutsummaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-04-04 20:53:00 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-04-19 22:16:46 +0300
commitdbbc19b77dcf6ea828aabd64d7aa8cab9635aaf5 (patch)
treec0b9b449b7064dff3613628022224e6c18148c3e /web
parentefb9c3e0e6b612d5bfadc7a2b984c14b5439335c (diff)
Implement build task, result and log requests handling
Diffstat (limited to 'web')
-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".
//