summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/time/Time_Client_i.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2023-01-17 09:44:30 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2023-01-17 09:44:30 +0100
commit73bdf800479e53a11143735e48348bb88c527c24 (patch)
tree03252f3055dd58fcfc99a70c53aca435eb61dbc2 /TAO/examples/Simple/time/Time_Client_i.cpp
parent016eb1b3caa7b8ba0ff4c479895151eca984c82b (diff)
downloadATCD-73bdf800479e53a11143735e48348bb88c527c24.tar.gz
Cleanup Solaris support
Diffstat (limited to 'TAO/examples/Simple/time/Time_Client_i.cpp')
-rw-r--r--TAO/examples/Simple/time/Time_Client_i.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/TAO/examples/Simple/time/Time_Client_i.cpp b/TAO/examples/Simple/time/Time_Client_i.cpp
index d8e9ae08ecd..87feb97e099 100644
--- a/TAO/examples/Simple/time/Time_Client_i.cpp
+++ b/TAO/examples/Simple/time/Time_Client_i.cpp
@@ -37,8 +37,6 @@ Time_Client_i::run (const char *name,
timedate = static_cast <time_t> (client_->current_time ());
// Print out value
- // Use ACE_OS::ctime_r(), ctime() doesn't seem to work properly
- // under 64-bit solaris.
ACE_TCHAR ascii_timedate[64] = ACE_TEXT ("");
ACE_OS::ctime_r (&timedate, ascii_timedate, 64);