summaryrefslogtreecommitdiffstats
path: root/src/tests/auth-tests.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/auth-tests.c')
-rw-r--r--src/tests/auth-tests.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/tests/auth-tests.c b/src/tests/auth-tests.c
index aae2d008..96bae98e 100644
--- a/src/tests/auth-tests.c
+++ b/src/tests/auth-tests.c
@@ -308,6 +308,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) {
@@ -320,7 +323,7 @@ int main(int argc, const char *argv[])
}
poptFreeContext(pc);
- debug_level = debug_convert_old_level(debug_level);
+ CONVERT_AND_SET_DEBUG_LEVEL(debug_level);
tests_set_cwd();