diff options
author | Andrew Bartlett <abartlet@samba.org> | 2005-06-13 08:12:39 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:18:06 -0500 |
commit | 2b4791ae733488845b2c36bca64db695203de571 (patch) | |
tree | e6c3836a90b412e61b10d30f3b256092b46811c7 /source4/include | |
parent | 8fd5825a890db4f08966e4b262b03fb7868cc4c2 (diff) | |
download | samba-2b4791ae733488845b2c36bca64db695203de571.tar.gz samba-2b4791ae733488845b2c36bca64db695203de571.tar.bz2 samba-2b4791ae733488845b2c36bca64db695203de571.zip |
r7525: Unify lp_load(), load_interfaces and logging setup into popt().
There is now a new --debug-stderr option to enable debug to STDERR.
popt isn't perfect, but the callbacks are used in all the main Samba
binaries, and should be used in the rest. This avoids duplicated
code, and ensures every binary is setup correctly.
This also ensures the setup happens early enough to have -s function,
and have a correct impact on the credentials code. (Fixing a bug that
frustrated tridge earlier today).
The only 'subtle' aspect of all this is that I'm pretty sure that the
SAMBA_COMMON popt code must be above the CREDENTIALS code, in the
popt tables.
Andrew Bartlett
(This used to be commit 50f3c2b3a22971f40e0d3a88127b5120bfc47591)
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 |