summaryrefslogtreecommitdiff
path: root/TAO/examples/Logging
diff options
context:
space:
mode:
authorAbdullah Sowayan <sowayan@users.noreply.github.com>2007-06-29 23:46:36 +0000
committerAbdullah Sowayan <sowayan@users.noreply.github.com>2007-06-29 23:46:36 +0000
commit677d654ca6d7f298e5e36e4a7dd7c926c6df31f2 (patch)
tree38b9f6b43f6ebbdea3935512deba511120548ee2 /TAO/examples/Logging
parent3718eaa95ae16cdf5b6850e234c34f0aca2dab06 (diff)
downloadATCD-677d654ca6d7f298e5e36e4a7dd7c926c6df31f2.tar.gz
Fri Jun 29 23:43:45 UTC 2007 Abdullah Sowayan <abdullah.sowayan@lmco.com>
Diffstat (limited to 'TAO/examples/Logging')
-rw-r--r--TAO/examples/Logging/Logging_Test_i.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/TAO/examples/Logging/Logging_Test_i.cpp b/TAO/examples/Logging/Logging_Test_i.cpp
index b4cd884edf0..f8dc3a45c12 100644
--- a/TAO/examples/Logging/Logging_Test_i.cpp
+++ b/TAO/examples/Logging/Logging_Test_i.cpp
@@ -306,8 +306,11 @@ Logger_Client::init_record (Logger::Log_Record &newrec,
// Assign the log priority.
newrec.type = lp;
+ //FUZZ: disable check_for_lack_ACE_OS
// Create and assign the timestamp.
ACE_Time_Value time (ACE_OS::gettimeofday ());
+ //FUZZ: enable check_for_lack_ACE_OS
+
newrec.time = time.sec ();
// Get and store the PID of the calling process.
@@ -328,6 +331,7 @@ Logger_Client::show_record (Logger::Log_Record &newrec)
in_addr address;
address.s_addr = newrec.host_addr;
+ //FUZZ: disable check_for_lack_ACE_OS
ACE_DEBUG ((LM_DEBUG,
" Log Priority: %d\n"
" Time: %d\n"
@@ -339,4 +343,5 @@ Logger_Client::show_record (Logger::Log_Record &newrec)
newrec.app_id,
inet_ntoa (address),
newrec.msg_data.in ()));
+ //FUZZ: enable check_for_lack_ACE_OS
}