Skip to content

Commit

Permalink
fixed GMT timestamp. Removed extra trailing Z. RC6
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Sobel committed Mar 5, 2014
1 parent 97ee1c7 commit 4357c5a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion agent/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ set (AGENT_VERSION_MAJOR 1)
set (AGENT_VERSION_MINOR 3)
set (AGENT_VERSION_PATCH 0)
set (AGENT_VERSION_BUILD 0)
set (AGENT_VERSION_RC "_RC5")
set (AGENT_VERSION_RC "_RC6")

if(WIN32)
if(CMAKE_CL_64)
Expand Down
4 changes: 0 additions & 4 deletions agent/globals.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,6 @@ string getCurrentTime(TimeFormat format)
{
sprintf(timestamp + strlen(timestamp), ".%06dZ", (int) usec);
}
else
{
strcat(timestamp, "Z");
}

return string(timestamp);
}
Expand Down

0 comments on commit 4357c5a

Please sign in to comment.