diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..b56d1b92 --- /dev/null +++ b/.gitignore @@ -0,0 +1,27 @@ +# Autotools generated files +Makefile.in +aclocal.m4 +autom4te.cache/ +compile +config.guess +config.log +config.sub +config.status +configure +depcomp +install-sh +ltmain.sh +missing +utils/config.h.in +utils/config.h + +# CodeQL generated files +_codeql_detected_source_root + +# Build artifacts +*.o +*.lo +*.la +.libs/ +.deps/ +Makefile diff --git a/rfcMgr/rfc_xconf_handler.cpp b/rfcMgr/rfc_xconf_handler.cpp index ca204ecb..7cc25904 100644 --- a/rfcMgr/rfc_xconf_handler.cpp +++ b/rfcMgr/rfc_xconf_handler.cpp @@ -1293,13 +1293,13 @@ void RuntimeFeatureControlProcessor::clearDB(void) std::string ConfigChangeTime = std::to_string(timestamp); std::ofstream touch_file(TR181STOREFILE); - touch_file.close(); + touch_file.close(); - RDK_LOG(RDK_LOG_INFO, LOG_RFCMGR, "[%s][%d] Clearing DB Value: %s\n", __FUNCTION__,__LINE__,ClearDB.c_str()); + RDK_LOG(RDK_LOG_INFO, LOG_RFCMGR, "[%s][%d] Clearing DB Value: %s\n", __FUNCTION__,__LINE__,ClearDB.c_str()); set_RFCProperty(name, std::move(ClearDB), clearValue); RDK_LOG(RDK_LOG_INFO, LOG_RFCMGR, "[%s][%d] Bootstrap Clearing DB Value: %s\n", __FUNCTION__,__LINE__,BootstrapClearDB.c_str()); set_RFCProperty(name, std::move(BootstrapClearDB), clearValue); - RDK_LOG(RDK_LOG_INFO, LOG_RFCMGR, "[%s][%d] ConfigChangeTime: %s\n", __FUNCTION__,__LINE__,ConfigChangeTime.c_str()); + RDK_LOG(RDK_LOG_INFO, LOG_RFCMGR, "[%s][%d] ConfigChangeTime: %s\n", __FUNCTION__,__LINE__,ConfigChangeTime.c_str()); set_RFCProperty(name, std::move(ConfigChangeTimeKey), ConfigChangeTime); #else