From: Thomas Markwalder Date: Mon, 8 Dec 2025 23:26:24 +0000 (-0500) Subject: [#4249] Addressed review comments X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=54dbf45e8d1aefdb7c184614e112eafa6af59fb5;p=thirdparty%2Fkea.git [#4249] Addressed review comments modified: src/lib/dhcpsrv/memfile_lease_mgr.cc - minor nits --- diff --git a/src/lib/dhcpsrv/memfile_lease_mgr.cc b/src/lib/dhcpsrv/memfile_lease_mgr.cc index e6c5931acc..090a8c7d24 100644 --- a/src/lib/dhcpsrv/memfile_lease_mgr.cc +++ b/src/lib/dhcpsrv/memfile_lease_mgr.cc @@ -3771,7 +3771,7 @@ Memfile_LeaseMgr::writeLeases4Internal(const std::string& filename) { // Rename the previous dump file (if one) to back up. ::rename(filename.c_str(), bakname.c_str()); - // Rename tmp file to dump file. + // Rename temp file to dump file. ::rename(tmpname.c_str(), filename.c_str()); } } @@ -3827,7 +3827,7 @@ Memfile_LeaseMgr::writeLeases6Internal(const std::string& filename) { // Rename the previous dump file (if one) to back up. ::rename(filename.c_str(), bakname.c_str()); - // Rename tmp file to dump file. + // Rename temp file to dump file. ::rename(tmpname.c_str(), filename.c_str()); } }