summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Mitz <mitza@ociweb.com>2016-09-21 14:28:10 -0500
committerAdam Mitz <mitza@ociweb.com>2016-09-21 14:28:10 -0500
commite573d3d883eb53b4713e467dc611127a28ac4112 (patch)
treebe99efea6d512a4ec01d8f87370dc6d8ac77c1d3
parent5a15f3fc7dafee50bebd5436c2585021243b885e (diff)
downloadATCD-e573d3d883eb53b4713e467dc611127a28ac4112.tar.gz
Fuzz script needs special comments for this case
-rw-r--r--ACE/ace/ACE.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/ACE/ace/ACE.cpp b/ACE/ace/ACE.cpp
index 569d6bb9dab..d2812fe45d2 100644
--- a/ACE/ace/ACE.cpp
+++ b/ACE/ace/ACE.cpp
@@ -164,7 +164,9 @@ ACE::nibble2hex (u_int n)
bool
ACE::debug (void)
{
- static const char* debug = ACE_OS::getenv ("ACE_DEBUG");
+ //FUZZ: disable check_for_ace_log_categories
+ static const char *debug = ACE_OS::getenv ("ACE_DEBUG");
+ //FUZZ: enable check_for_ace_log_categories
return (ACE::debug_ != 0) ? ACE::debug_ : (debug != 0 ? (*debug != '0') : false);
}