diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2002-08-29 16:35:33 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2002-08-29 16:35:33 +0000 |
commit | b786c9a2eccd821903fc057829192ce36e636c96 (patch) | |
tree | 4b2481e3b228fbc22722b0b1ff1c03538f7776d1 /source3/lib/popt_common.c | |
parent | f338cf5a83d4ebde456bb2d2cf02e85eeb2e1454 (diff) | |
download | samba-b786c9a2eccd821903fc057829192ce36e636c96.tar.gz samba-b786c9a2eccd821903fc057829192ce36e636c96.tar.bz2 samba-b786c9a2eccd821903fc057829192ce36e636c96.zip |
Make debuglevel a string for use with debug classes
(This used to be commit fc29385029bf000dc70d23154e39970ee76e4d30)
Diffstat (limited to 'source3/lib/popt_common.c')
-rw-r--r-- | source3/lib/popt_common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/popt_common.c b/source3/lib/popt_common.c index a3d6af4fbc..bbc17cb704 100644 --- a/source3/lib/popt_common.c +++ b/source3/lib/popt_common.c @@ -33,7 +33,7 @@ static void debug_callback(poptContext con, switch(opt->val) { case 'd': if (arg) { - DEBUGLEVEL = atoi(arg); + debug_parse_levels(arg); AllowDebugChange = False; } @@ -43,7 +43,7 @@ static void debug_callback(poptContext con, struct poptOption popt_common_debug[] = { { NULL, 0, POPT_ARG_CALLBACK, debug_callback }, - { "debuglevel", 'd', POPT_ARG_INT, NULL, 'd', "Set debug level", + { "debuglevel", 'd', POPT_ARG_STRING, NULL, 'd', "Set debug level", "DEBUGLEVEL" }, { 0 } }; |