Avoid wrongly using the debug-dot-level parameter.

It was assigned to debug_dot_domain instead. This led to an error in the
unit_tests.
This commit is contained in:
Mark de Wever 2011-09-10 16:13:15 +00:00
parent a39f31d406
commit b43d8c625d

View file

@ -253,7 +253,7 @@ commandline_options::commandline_options ( int argc, char** argv ) :
debug_dot_domain = vm["debug-dot-domain"].as<std::string>();
}
if (vm.count("debug-dot-level")) {
debug_dot_domain = vm["debug-dot-level"].as<std::string>();
debug_dot_level = vm["debug-dot-level"].as<std::string>();
}
#endif
if (vm.count("editor"))