Skip to content
Merged
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
3 changes: 3 additions & 0 deletions rfcMgr/mtlsUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ MtlsAuthStatus getMtlscert(MtlsAuth_t *sec, rdkcertselector_h* pthisCertSel) {
strncpy(sec->key_pas, mtlsbuff, sizeof(sec->key_pas) - 1);
sec->key_pas[sizeof(sec->key_pas) - 1] = '\0';
* */
(void)sec;
(void)pthisCertSel;
return MTLS_CERT_FETCH_SUCCESS;
}
#else
Expand All @@ -96,6 +98,7 @@ int getMtlscert(MtlsAuth_t *sec) {
sec->key_pas[sizeof(sec->key_pas) - 1] = '\0';
*/
/* TODO: RDKE-419: temporary change until RDKE-419 gets proper solution. */
(void)sec;
return MTLS_FAILURE;
}
#endif
Expand Down
6 changes: 5 additions & 1 deletion rfcMgr/rfc_xconf_handler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,11 @@ extern "C" {
#include <common_device_api.h>
#include <system_utils.h>
#include <urlHelper.h>


#ifndef MTLS_FAILURE
#define MTLS_FAILURE -1
#endif

int RuntimeFeatureControlProcessor:: InitializeRuntimeFeatureControlProcessor(void)
{
std::string rfc_file;
Expand Down
Loading