From: Marcin Siodelski Date: Thu, 5 Feb 2015 17:20:56 +0000 (+0100) Subject: [3665] Some trivial changes as a result of the review. X-Git-Tag: trac3712_base~17^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c154dcc27378ce6dbf25d05a669da862f8bf0007;p=thirdparty%2Fkea.git [3665] Some trivial changes as a result of the review. --- diff --git a/src/bin/lfc/lfc_controller.h b/src/bin/lfc/lfc_controller.h index 560d285992..837f75852c 100644 --- a/src/bin/lfc/lfc_controller.h +++ b/src/bin/lfc/lfc_controller.h @@ -62,7 +62,7 @@ public: /// of the process. Provides the control logic to combine /// two lease files and weed out duplicate and expired leases. /// A description of the design can be found at - /// http://kea.isc.org/wiki/LFCDesign#no1 + /// http://kea.isc.org/wiki/LFCDesign /// /// -# parse command line arguments /// -# verify that it is the only instance @@ -176,9 +176,11 @@ private: /// should be short (false) or extended (true) std::string getVersion(const bool extended) const; - /// @brief Process files. Read in the leases from any previous & copy - /// files we have and write the results out to the output file. Upon - /// completion of the write move the file to the finish file. + /// @brief Process files. + /// + /// Read in the leases from any previous & copy files we have and + /// write the results out to the output file. Upon completion of + /// the write move the file to the finish file. /// /// @tparam LeaseObjectType A @c Lease4 or @c Lease6. /// @tparam LeaseFileType A @c CSVLeaseFile4 or @c CSVLeaseFile6. diff --git a/src/bin/lfc/tests/lfc_controller_unittests.cc b/src/bin/lfc/tests/lfc_controller_unittests.cc index 28edafd8fa..69de34dac4 100644 --- a/src/bin/lfc/tests/lfc_controller_unittests.cc +++ b/src/bin/lfc/tests/lfc_controller_unittests.cc @@ -45,10 +45,7 @@ public: /// /// @returns true if the file doesn't exist, false if it does bool noExist(const std::string& filename) const { - if ((remove(filename.c_str()) != 0) && (errno == ENOENT)) { - return (true); - } - return (false); + return ((remove(filename.c_str()) != 0) && (errno == ENOENT)); } /// @brief Test if any of the temporary (copy, output or finish) @@ -56,10 +53,7 @@ public: /// /// @returns true if no files exist, and false if any do. bool noExistIOF() const { - if (noExist(istr_) && noExist(ostr_) && noExist(fstr_)) { - return (true); - } - return (false); + return (noExist(istr_) && noExist(ostr_) && noExist(fstr_)); } /// @brief Test if any of the temporary (copy, output or finish) @@ -67,11 +61,8 @@ public: /// /// @returns true if no files exist, and false if any do. bool noExistIOFP() const { - if (noExist(istr_) && noExist(ostr_) && - noExist(fstr_) && noExist(pstr_)) { - return (true); - } - return (false); + return ((noExist(istr_) && noExist(ostr_) && + noExist(fstr_) && noExist(pstr_))); } /// @brief Remove any files we may have created