summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/tests/echotest.cpp
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2010-04-23 03:59:52 +0000
committerAndrew Stitcher <astitcher@apache.org>2010-04-23 03:59:52 +0000
commitb4738c5e99ee9e751f45deb177270bc0bb0a775e (patch)
tree492aaa6da19f33540e3aa31d6da166c130e60f55 /qpid/cpp/src/tests/echotest.cpp
parent8503ad14763c515f20303c790589d7b5317e4877 (diff)
downloadqpid-python-b4738c5e99ee9e751f45deb177270bc0bb0a775e.tar.gz
QPID-1904: Ensure that all timestamp uses are correctly relative to 1/1/1970 epoch.
- Removed the hacky way to access the internal time value in AbsTime now that there is a defined AbsTime value EPOCH. - Changed all the code to use Duration(EPOCH, abtime) git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@937147 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/echotest.cpp')
-rw-r--r--qpid/cpp/src/tests/echotest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/echotest.cpp b/qpid/cpp/src/tests/echotest.cpp
index dcb1869e4d..5114ab883d 100644
--- a/qpid/cpp/src/tests/echotest.cpp
+++ b/qpid/cpp/src/tests/echotest.cpp
@@ -64,7 +64,7 @@ struct Args : public qpid::Options,
uint64_t current_time()
{
- Duration t(now());
+ Duration t(EPOCH, now());
return t;
}