Skip to content
Open
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
4 changes: 4 additions & 0 deletions SystemServices/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ All notable changes to this RDK Service will be documented in this file.

* For more details, refer to [versioning](https://github.com/rdkcentral/rdkservices#versioning) section under Main README.

## [3.5.3] - 2025-10-16
### Fixed
- Removed unncecsarry log that was giving a false positive in terms of an error marker in logs

## [3.5.2] - 2025-10-16
### Fixed
- Added safetycheck around string manipulation while invoking getTerritory/setTerritory
Expand Down
2 changes: 1 addition & 1 deletion SystemServices/SystemServices.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ using namespace std;

#define API_VERSION_NUMBER_MAJOR 3
#define API_VERSION_NUMBER_MINOR 5
#define API_VERSION_NUMBER_PATCH 1
#define API_VERSION_NUMBER_PATCH 3

#define MAX_REBOOT_DELAY 86400 /* 24Hr = 86400 sec */
#define TR181_FW_DELAY_REBOOT "Device.DeviceInfo.X_RDKCENTRAL-COM_RFC.Feature.AutoReboot.fwDelayReboot"
Expand Down
4 changes: 2 additions & 2 deletions SystemServices/SystemServicesHelper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ namespace WPEFramework {
{
const char * pipeName = "PATH=${PATH}:/sbin:/usr/sbin /lib/rdk/getDeviceDetails.sh read";
FILE* pipe = popen(pipeName, "r");
LOGWARN("%s: opened pipe for command '%s', with result %s : %s\n",
__FUNCTION__ , pipeName, pipe ? "sucess" : "failure", strerror(errno));
LOGWARN("%s: opened pipe for command '%s', with result %s\n",
__FUNCTION__ , pipeName, pipe ? "success" : "failure");
if (!pipe) {
LOGERR("%s: SERVICEMANAGER_FILE_ERROR: Can't open pipe for command '%s' for read mode: %s\n"
, __FUNCTION__, pipeName, strerror(errno));
Expand Down
Loading