laforge has submitted this change. ( https://gerrit.osmocom.org/c/onomondo-ipa/+/43412?usp=email )
Change subject: ipad/log: fix incorrectly referenced ASN.1 object ......................................................................
ipad/log: fix incorrectly referenced ASN.1 object
The object that loads the initial eIM configuration is called "AddInitialEimRequest" and not "EimConfigurationData"
Related: SYS#8101 Change-Id: I6b488081abc27fb0c66ea1e696f80f7d67f23365 --- M src/ipa/libipa/ipad.c 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Jenkins Builder: Verified laforge: Looks good to me, approved
diff --git a/src/ipa/libipa/ipad.c b/src/ipa/libipa/ipad.c index 730ff50..1798c37 100644 --- a/src/ipa/libipa/ipad.c +++ b/src/ipa/libipa/ipad.c @@ -235,7 +235,7 @@ /* Decode AddInitialEimRequest */ rc = ber_decode(0, &asn_DEF_AddInitialEimRequest, (void **)&eim_cfg_decoded, cfg->data, cfg->len); if (rc.code != RC_OK) { - IPA_LOGP(SIPA, LERROR, "unable decode EimConfigurationData\n"); + IPA_LOGP(SIPA, LERROR, "unable decode AddInitialEimRequest\n"); ASN_STRUCT_FREE(asn_DEF_AddInitialEimRequest, eim_cfg_decoded); return -EINVAL; }