Fix more error codes.

(Also improve util/ck_errf.pl script, and occasionally
fix source code formatting.)
This commit is contained in:
Bodo Möller
2005-05-11 03:45:39 +00:00
parent 35e8510e60
commit 8afca8d9c6
79 changed files with 395 additions and 337 deletions

View File

@@ -231,7 +231,7 @@ static int module_run(const CONF *cnf, char *name, char *value,
if (!(flags & CONF_MFLAGS_SILENT))
{
char rcode[DECIMAL_SIZE(ret)+1];
CONFerr(CONF_F_CONF_MODULE_RUN, CONF_R_MODULE_INITIALIZATION_ERROR);
CONFerr(CONF_F_MODULE_RUN, CONF_R_MODULE_INITIALIZATION_ERROR);
BIO_snprintf(rcode, sizeof rcode, "%-8d", ret);
ERR_add_error_data(6, "module=", name, ", value=", value, ", retcode=", rcode);
}