diff options
Diffstat (limited to 'src/tests/refcount-tests.c')
-rw-r--r-- | src/tests/refcount-tests.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/tests/refcount-tests.c b/src/tests/refcount-tests.c index 99eedd9d6..18f555320 100644 --- a/src/tests/refcount-tests.c +++ b/src/tests/refcount-tests.c @@ -207,6 +207,9 @@ int main(int argc, const char *argv[]) POPT_TABLEEND }; + /* Set debug level to invalid value so we can deside if -d 0 was used. */ + debug_level = SSSDBG_INVALID; + pc = poptGetContext(argv[0], argc, argv, long_options, 0); while((opt = poptGetNextOpt(pc)) != -1) { switch(opt) { @@ -218,7 +221,8 @@ int main(int argc, const char *argv[]) } } poptFreeContext(pc); - debug_level = debug_convert_old_level(debug); + + CONVERT_AND_SET_DEBUG_LEVEL(debug_level); tests_set_cwd(); |