summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);
}