2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-29 04:57:52 +00:00
This commit is contained in:
Francis Dupont 2025-05-14 22:01:14 +02:00 committed by Andrei Pavel
parent dcd07a42aa
commit 97c2226aa9
No known key found for this signature in database
GPG Key ID: D4E804481939CB21
4 changed files with 2 additions and 4 deletions

View File

@ -1103,7 +1103,6 @@ to the previous filename: for example, ``.bak14326``.
or, if already running, log an unrecoverable error. For ease of use in or, if already running, log an unrecoverable error. For ease of use in
specifying a custom file name simply omit the path portion from ``filename``. specifying a custom file name simply omit the path portion from ``filename``.
.. note:: .. note::
These commands do not replace the LFC mechanism; they should be used These commands do not replace the LFC mechanism; they should be used

View File

@ -39,7 +39,7 @@ DbLogger legal_log_db_logger(legal_log_logger, legal_log_db_message_map);
/// @brief Test fixture /// @brief Test fixture
struct LegalLogMgrTest : ::testing::Test { struct LegalLogMgrTest : ::testing::Test {
/// @brief Construtor. /// @brief Constructor.
LegalLogMgrTest() : legal_log_dir_env_var_("KEA_LEGAL_LOG_DIR") { LegalLogMgrTest() : legal_log_dir_env_var_("KEA_LEGAL_LOG_DIR") {
} }

View File

@ -4459,7 +4459,6 @@ void Lease6CmdsTest::testLease6Write() {
std::ostringstream os; std::ostringstream os;
os << "'filename' parameter is invalid: invalid path specified:" os << "'filename' parameter is invalid: invalid path specified:"
<< " '/tmp', supported path is '" << CfgMgr::instance().getDataDir() << "'"; << " '/tmp', supported path is '" << CfgMgr::instance().getDataDir() << "'";
} }
TEST_F(Lease6CmdsTest, lease6AddMissingParams) { TEST_F(Lease6CmdsTest, lease6AddMissingParams) {

View File

@ -200,7 +200,7 @@ public:
/// @brief Validates a directory against a supported path. /// @brief Validates a directory against a supported path.
/// ///
/// Used to validate a string that represents a directory that may 0or /// Used to validate a string that represents a directory that may or
/// may not end with a "/" (i.e "/foo/bar", bar is assumed to be the /// may not end with a "/" (i.e "/foo/bar", bar is assumed to be the
/// a directory, not a file. /// a directory, not a file.
/// ///