ERR_raise_data(ERR_LIB_OSSL_DECODER, code,
"%s, Name (%s : %d), Properties (%s)",
ossl_lib_ctx_get_descriptor(methdata->libctx),
- name = NULL ? "<null>" : name, id,
+ name == NULL ? "<null>" : name, id,
properties == NULL ? "<null>" : properties);
}
ERR_raise_data(ERR_LIB_OSSL_ENCODER, code,
"%s, Name (%s : %d), Properties (%s)",
ossl_lib_ctx_get_descriptor(methdata->libctx),
- name = NULL ? "<null>" : name, id,
+ name == NULL ? "<null>" : name, id,
properties == NULL ? "<null>" : properties);
}
"%s%s, Scheme (%s : %d), Properties (%s)",
helpful_msg,
ossl_lib_ctx_get_descriptor(methdata->libctx),
- scheme = NULL ? "<null>" : scheme, id,
+ scheme == NULL ? "<null>" : scheme, id,
properties == NULL ? "<null>" : properties);
}