diff options
Diffstat (limited to 'source4/include')
-rw-r--r-- | source4/include/debug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/include/debug.h b/source4/include/debug.h index 166b7c26f5..ccd1c90040 100644 --- a/source4/include/debug.h +++ b/source4/include/debug.h @@ -46,7 +46,7 @@ extern int DEBUGLEVEL; #define DEBUGADDC(class, level, body) DEBUG(level, body) #define DEBUGTAB(n) do_debug_tab(n) -enum debug_logtype {DEBUG_FILE, DEBUG_STDOUT, DEBUG_STDERR}; +enum debug_logtype {DEBUG_STDOUT = 0, DEBUG_FILE = 1, DEBUG_STDERR = 2}; /* keep some debug class defines for now to avoid changing old code too much */ #define DBGC_AUTH 0 |