diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..258b4aa --- /dev/null +++ b/.gitignore @@ -0,0 +1,27 @@ +# Autotools generated files +Makefile.in +aclocal.m4 +autom4te.cache/ +compile +config.guess +config.log +config.status +config.sub +configure +depcomp +install-sh +libtool +ltmain.sh +missing +stamp-h1 +*.o +*.lo +*.la +.libs/ +.deps/ +utils/config.h +utils/config.h.in +utils/stamp-h1 + +# CodeQL +_codeql_detected_source_root diff --git a/rfcMgr/rfc_xconf_handler.cpp b/rfcMgr/rfc_xconf_handler.cpp index bbdeee8..a5dae22 100644 --- a/rfcMgr/rfc_xconf_handler.cpp +++ b/rfcMgr/rfc_xconf_handler.cpp @@ -1295,12 +1295,12 @@ void RuntimeFeatureControlProcessor::clearDB(void) std::ofstream touch_file(TR181STOREFILE); touch_file.close(); - set_RFCProperty(name, std::move(ClearDB), clearValue); - set_RFCProperty(name, std::move(BootstrapClearDB), clearValue); + set_RFCProperty(name, ClearDB, clearValue); + set_RFCProperty(name, BootstrapClearDB, clearValue); set_RFCProperty(name, ConfigChangeTimeKey, ConfigChangeTime); - RDK_LOG(RDK_LOG_INFO, LOG_RFCMGR, "[%s][%d] Clearing DB Value\n", __FUNCTION__,__LINE__); - RDK_LOG(RDK_LOG_INFO, LOG_RFCMGR, "[%s][%d] Bootstrap Clearing DB Value\n", __FUNCTION__,__LINE__); + RDK_LOG(RDK_LOG_INFO, LOG_RFCMGR, "[%s][%d] Clearing DB Key Value: %s\n", __FUNCTION__,__LINE__,ClearDB.c_str()); + RDK_LOG(RDK_LOG_INFO, LOG_RFCMGR, "[%s][%d] Bootstrap Clearing DB Key Value: %s\n", __FUNCTION__,__LINE__,BootstrapClearDB.c_str()); RDK_LOG(RDK_LOG_INFO, LOG_RFCMGR, "[%s][%d] ConfigChangeTime: %s\n", __FUNCTION__,__LINE__,ConfigChangeTime.c_str()); #else