From e1ae310114c0ea558eb7fbada0c34d884af210f3 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Thu, 08 Mar 2007 17:34:05 +0000
Subject: [PATCH] Update the UTC Time attribute syntax so that it correctly uses two-digit years instead of four-digit years.  Also, update other parts of the server that made reference to UTC times when they really meant "YYYYMMDDhhmmssZ" to the term "GMT" instead of "UTC" so there is no confusion about whether the year would be expressed in four digits or two.

---
 opendj-sdk/opends/src/server/org/opends/server/plugins/profiler/ProfilerPlugin.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/opendj-sdk/opends/src/server/org/opends/server/plugins/profiler/ProfilerPlugin.java b/opendj-sdk/opends/src/server/org/opends/server/plugins/profiler/ProfilerPlugin.java
index f17b731..d39c478 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/plugins/profiler/ProfilerPlugin.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/plugins/profiler/ProfilerPlugin.java
@@ -339,7 +339,7 @@
         profilerThread.stopProfiling();
 
         String filename = profileDirectory + File.separator + "profile." +
-                          TimeThread.getUTCTime();
+                          TimeThread.getGMTTime();
         try
         {
           profilerThread.writeCaptureData(filename);
@@ -751,7 +751,7 @@
                 }
 
                 String filename = profileDirectory + File.separator +
-                                  "profile." + TimeThread.getUTCTime();
+                                  "profile." + TimeThread.getGMTTime();
 
                 try
                 {

--
Gitblit v1.10.0