removed the if statements from the DEBUG() macro definitions.
commitab912448c1ff2487b6a313574d72f389baa65e6d
authorAndrew Tridgell <tridge@samba.org>
Sun, 9 Aug 1998 13:12:09 +0000 (9 13:12 +0000)
committerAndrew Tridgell <tridge@samba.org>
Sun, 9 Aug 1998 13:12:09 +0000 (9 13:12 +0000)
tree1c4761376a8f09ef5f626ff460b6edbd6ceb8ddf
parent251213898077a11d71b208434c65748f922d7e9a
removed the if statements from the DEBUG() macro definitions.

Chris, you should never put if statements in macros, use the ugly
(a?b:c) form instead, otherwise you can produce incorrect code when
you have things like:

if (foo)
   DEBUG((blah));
else
   DEBUG((blooh));
source/include/smb.h