diff options
Diffstat (limited to 'crypto/conf/conf_lib.c')
-rw-r--r-- | crypto/conf/conf_lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/conf/conf_lib.c b/crypto/conf/conf_lib.c index d100d5ed5c..1f106d8c07 100644 --- a/crypto/conf/conf_lib.c +++ b/crypto/conf/conf_lib.c @@ -279,8 +279,8 @@ char *NCONF_get_string(const CONF *conf, const char *group, const char *name) ERR_raise(ERR_LIB_CONF, CONF_R_NO_CONF_OR_ENVIRONMENT_VARIABLE); return NULL; } - ERR_raise(ERR_LIB_CONF, CONF_R_NO_VALUE); - ERR_add_error_data(4, "group=", group, " name=", name); + ERR_raise_data(ERR_LIB_CONF, CONF_R_NO_VALUE, + "group=%s name=%s", group, name); return NULL; } |