aboutsummaryrefslogtreecommitdiff
path: root/nxcomp/src/Timestamp.h
diff options
context:
space:
mode:
authorMihai Moldovan <ionic@ionic.de>2017-12-30 09:30:03 +0100
committerMihai Moldovan <ionic@ionic.de>2018-01-09 00:15:42 +0100
commit2eb2f2e6ca13d84113e30041ade2dbfa9f4e1432 (patch)
tree1365ea718d79998976bfab487b596ef48ce34b0c /nxcomp/src/Timestamp.h
parentdf8908b9dc0a4583c4b426cbbe47249cd895e16a (diff)
downloadnx-libs-2eb2f2e6ca13d84113e30041ade2dbfa9f4e1432.tar.gz
nx-libs-2eb2f2e6ca13d84113e30041ade2dbfa9f4e1432.tar.bz2
nx-libs-2eb2f2e6ca13d84113e30041ade2dbfa9f4e1432.zip
nxcomp/src/Timestamp.{cpp,h}: use ::ctime_s or ::ctime_r instead of plain ctime, on-stack buffers and return std::string objects.
Fixes: ArcticaProject/nx-libs#616
Diffstat (limited to 'nxcomp/src/Timestamp.h')
-rw-r--r--nxcomp/src/Timestamp.h16
1 files changed, 11 insertions, 5 deletions
diff --git a/nxcomp/src/Timestamp.h b/nxcomp/src/Timestamp.h
index bb9b243db..9e6fafcfd 100644
--- a/nxcomp/src/Timestamp.h
+++ b/nxcomp/src/Timestamp.h
@@ -26,11 +26,17 @@
#ifndef Timestamp_H
#define Timestamp_H
+#if HAVE_CTIME_S
+#define __STDC_WANT_LIB_EXT1__ 1
+#include <time.h>
+#endif /* HAVE_CTIME_S */
+
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <iostream>
+#include <string>
-#include <time.h>
#include <sys/time.h>
#include "Misc.h"
@@ -260,15 +266,15 @@ inline int checkDiffTimestamp(const T_timestamp &ts1, const T_timestamp &ts2,
// Return a string representing the timestamp.
//
-char *strTimestamp(const T_timestamp &ts);
-char *strMsTimestamp(const T_timestamp &ts);
+std::string strTimestamp(const T_timestamp &ts);
+std::string strMsTimestamp(const T_timestamp &ts);
-inline char *strTimestamp()
+inline std::string strTimestamp()
{
return strTimestamp(getTimestamp());
}
-inline char *strMsTimestamp()
+inline std::string strMsTimestamp()
{
return strMsTimestamp(getTimestamp());
}