Skip to content
Snippets Groups Projects
Commit 86fdca51 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

#if 0 debug statements in signal handlers

parent 6180bcbf
No related branches found
No related tags found
No related merge requests found
......@@ -2053,11 +2053,13 @@ int sockdestroy(void)
RETSIGTYPE
slap_sig_shutdown( int sig )
{
#if 0
#ifdef NEW_LOGGING
LDAP_LOG( CONNECTION, CRIT,
"slap_sig_shutdown: signal %d\n", sig, 0, 0 );
#else
Debug(LDAP_DEBUG_TRACE, "slap_sig_shutdown: signal %d\n", sig, 0, 0);
#endif
#endif
/*
......@@ -2068,12 +2070,14 @@ slap_sig_shutdown( int sig )
#if HAVE_NT_SERVICE_MANAGER && SIGBREAK
if (is_NT_Service && sig == SIGBREAK)
#if 0
#ifdef NEW_LOGGING
LDAP_LOG( CONNECTION, CRIT,
"slap_sig_shutdown: SIGBREAK ignored.\n", 0, 0, 0 );
#else
Debug(LDAP_DEBUG_TRACE, "slap_sig_shutdown: SIGBREAK ignored.\n",
0, 0, 0);
#endif
#endif
else
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment