deleted some old DEBUG() code that wasn't used
authorAndrew Tridgell <tridge@samba.org>
Sun, 22 Nov 1998 09:44:46 +0000 (09:44 +0000)
committerAndrew Tridgell <tridge@samba.org>
Sun, 22 Nov 1998 09:44:46 +0000 (09:44 +0000)
(This used to be commit bdcee2557bd243a1bfbde3353ebcfe3d82bf9fc5)

source3/include/smb.h

index 47dde8c31f70ee3b3d7e9d8f7bbaf9e2906c681f..d0880c9cd3ccd78d75cc600c2de4ffe679f96550 100644 (file)
@@ -119,18 +119,6 @@ BOOL dbgtext();
   ( (DEBUGLEVEL >= (level)) \
    && dbghdr( level, FILE_MACRO, FUNCTION_MACRO, (__LINE__) ) )
 
-#if 0
-
-#define DEBUG( level, body ) \
-  ( ( DEBUGLEVEL >= (level) \
-   && dbghdr( level, FILE_MACRO, FUNCTION_MACRO, (__LINE__) ) ) \
-      ? (void)(dbgtext body) : (void)0 )
-
-#define DEBUGADD( level, body ) \
-     ( (DEBUGLEVEL >= (level)) ? (void)(dbgtext body) : (void)0 )
-
-#else
-
 #define DEBUG( level, body ) \
   (void)( (DEBUGLEVEL >= (level)) \
        && (dbghdr( level, FILE_MACRO, FUNCTION_MACRO, (__LINE__) )) \
@@ -139,8 +127,6 @@ BOOL dbgtext();
 #define DEBUGADD( level, body ) \
   (void)( (DEBUGLEVEL >= (level)) && (dbgtext body) )
 
-#endif
-
 /* End Debugging code section.
  * -------------------------------------------------------------------------- **
  */