diff options
author | Razvan Becheriu <razvan@isc.org> | 2022-02-08 16:57:13 +0100 |
---|---|---|
committer | Razvan Becheriu <razvan@isc.org> | 2022-02-09 13:08:12 +0100 |
commit | a877676a6325dfa4cab34a3d2b3c91aff3cb73b4 (patch) | |
tree | dc68fddde735a281d9d7e83434de6d7d48083cab /src/bin/lfc/lfc_controller.cc | |
parent | [#2250] format else statement (diff) | |
download | kea-a877676a6325dfa4cab34a3d2b3c91aff3cb73b4.tar.xz kea-a877676a6325dfa4cab34a3d2b3c91aff3cb73b4.zip |
[#2294] also check server global variables ssl_ca, ssl_cert and ssl_key
Diffstat (limited to 'src/bin/lfc/lfc_controller.cc')
-rw-r--r-- | src/bin/lfc/lfc_controller.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/bin/lfc/lfc_controller.cc b/src/bin/lfc/lfc_controller.cc index 50f7470806..4f51238f92 100644 --- a/src/bin/lfc/lfc_controller.cc +++ b/src/bin/lfc/lfc_controller.cc @@ -139,7 +139,7 @@ LFCController::launch(int argc, char* argv[], const bool test_mode) { try { pid_file.deleteFile(); } catch (const PIDFileError& pid_ex) { - LOG_FATAL(lfc_logger, LFC_FAIL_PID_DEL).arg(pid_ex.what()); + LOG_FATAL(lfc_logger, LFC_FAIL_PID_DEL).arg(pid_ex.what()); } LOG_INFO(lfc_logger, LFC_TERMINATE); @@ -414,8 +414,7 @@ LFCController::startLogger(const bool test_mode) const { // else use our defaults if (test_mode) { initLogger(); - } - else { + } else { OutputOption option; LoggerManager manager; |