summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/engine/eng_cnf.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lib/libcrypto/engine/eng_cnf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/engine/eng_cnf.c b/src/lib/libcrypto/engine/eng_cnf.c
index 95c4070015..afb704e93b 100644
--- a/src/lib/libcrypto/engine/eng_cnf.c
+++ b/src/lib/libcrypto/engine/eng_cnf.c
@@ -203,9 +203,9 @@ static int int_engine_configure(char *name, char *value, const CONF *cnf)
203 { 203 {
204 ENGINEerr(ENGINE_F_INT_ENGINE_CONFIGURE, ENGINE_R_ENGINE_CONFIGURATION_ERROR); 204 ENGINEerr(ENGINE_F_INT_ENGINE_CONFIGURE, ENGINE_R_ENGINE_CONFIGURATION_ERROR);
205 if (ecmd) 205 if (ecmd)
206 ERR_add_error_data(6, "section=", ecmd->section, 206 ERR_asprintf_error_data
207 ", name=", ecmd->name, 207 ("section=%s, name=%s, value=%s",
208 ", value=", ecmd->value); 208 ecmd->section, ecmd->name, ecmd->value);
209 } 209 }
210 if (e) 210 if (e)
211 ENGINE_free(e); 211 ENGINE_free(e);