Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -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
6 changes: 3 additions & 3 deletions rfcMgr/rfc_xconf_handler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down