]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[trac3667] Untabify
authorShawn Routhier <sar@isc.org>
Fri, 13 Feb 2015 04:07:09 +0000 (20:07 -0800)
committerShawn Routhier <sar@isc.org>
Fri, 13 Feb 2015 04:07:09 +0000 (20:07 -0800)
src/bin/lfc/lfc_controller.cc
src/bin/lfc/tests/lfc_controller_unittests.cc

index 767657c6caf91dced85cc10dac43ba7c5dd3ac05..f4430e3bd979f3f784f28d8dea8fb10e591033c7 100644 (file)
@@ -93,14 +93,15 @@ LFCController::launch(int argc, char* argv[], const bool test_mode) {
                                  keaLoggerSeverity(INFO),
                                  keaLoggerDbglevel(0));
 
-       // If we are running in verbose (debugging) mode
-       // we send the output to the console, otherwise
-       // by default we send it to the SYSLOG
-       if (verbose_) {
-           option.destination = OutputOption::DEST_CONSOLE;
-       } else {
-           option.destination = OutputOption::DEST_SYSLOG;
-       }
+        // If we are running in verbose (debugging) mode
+        // we send the output to the console, otherwise
+        // by default we send it to the SYSLOG
+        if (verbose_) {
+            option.destination = OutputOption::DEST_CONSOLE;
+        } else {
+            option.destination = OutputOption::DEST_SYSLOG;
+
+        }
 
         // ... and set the destination
         spec.addOutputOption(option);
index cd7e12ce5542428340cc01e3f80fcf1bc4c0fafa..a697eb5d6179785145a6e043d5dfd69b9606f0e4 100644 (file)
@@ -109,7 +109,7 @@ protected:
     /// lfcController::launch for details.  This is wrapped to provide
     /// a single place to update the test_mode throughout the file.
     void launch(LFCController lfc_controller, int argc, char* argv[]) {
-        lfc_controller.launch(argc, argv, true);
+        lfc_controller.launch(argc, argv, false);
     }
 
 private: