Skip to content

Commit

Permalink
Merge pull request #4 from sanjaynayakk/RDKBDEV-2883
Browse files Browse the repository at this point in the history
RDKBDEV-2883 :Fix for Device.DSL.Channel.%d.Enable is always set to f…
  • Loading branch information
guto86 authored Nov 12, 2024
2 parents a81e9eb + 778732a commit 7b020fd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions source/TR-181/integration_src.shared/xdsl_hal.c
Original file line number Diff line number Diff line change
Expand Up @@ -1782,6 +1782,9 @@ int xdsl_hal_dslGetChannelInfo(int channelNo, PDML_XDSL_CHANNEL pstChannelInfo)
pstChannelInfo->Status = XDSL_IF_STATUS_Error;
}
}
else if (strstr (resp_param.name, "Enable")) {
pstChannelInfo->Enable = atoi(resp_param.value);
}
else if (strstr (resp_param.name, "LastChange")) {
pstChannelInfo->LastChange = atoi(resp_param.value);
}
Expand Down

0 comments on commit 7b020fd

Please sign in to comment.