Skip to content

Commit 4357c5a

Browse files
author
Will Sobel
committed
fixed GMT timestamp. Removed extra trailing Z. RC6
1 parent 97ee1c7 commit 4357c5a

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

agent/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ set (AGENT_VERSION_MAJOR 1)
1010
set (AGENT_VERSION_MINOR 3)
1111
set (AGENT_VERSION_PATCH 0)
1212
set (AGENT_VERSION_BUILD 0)
13-
set (AGENT_VERSION_RC "_RC5")
13+
set (AGENT_VERSION_RC "_RC6")
1414

1515
if(WIN32)
1616
if(CMAKE_CL_64)

agent/globals.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -136,10 +136,6 @@ string getCurrentTime(TimeFormat format)
136136
{
137137
sprintf(timestamp + strlen(timestamp), ".%06dZ", (int) usec);
138138
}
139-
else
140-
{
141-
strcat(timestamp, "Z");
142-
}
143139

144140
return string(timestamp);
145141
}

0 commit comments

Comments
 (0)