diff options
author | markus <> | 2002-07-30 16:00:16 +0000 |
---|---|---|
committer | markus <> | 2002-07-30 16:00:16 +0000 |
commit | b16c13ed2fd774b1e93a0165b809fda9376b3fc4 (patch) | |
tree | 5cd7e8e3dd15c5a8b25bce74c5b82182b5081b19 /src/lib/libcrypto/conf/conf_mod.c | |
parent | c54a116b266c232d9e0ffad482eb5f8b98130ac4 (diff) | |
download | openbsd-b16c13ed2fd774b1e93a0165b809fda9376b3fc4.tar.gz openbsd-b16c13ed2fd774b1e93a0165b809fda9376b3fc4.tar.bz2 openbsd-b16c13ed2fd774b1e93a0165b809fda9376b3fc4.zip |
sync with http://www.openssl.org/news/patch_20020730_0_9_7.txt
(adds fix for unused kerberos and engine code, and some more
assertions, as well as a 64bit integer string fix for conf_mod.c)
Diffstat (limited to 'src/lib/libcrypto/conf/conf_mod.c')
-rw-r--r-- | src/lib/libcrypto/conf/conf_mod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libcrypto/conf/conf_mod.c b/src/lib/libcrypto/conf/conf_mod.c index f92babc2e2..edcc08921c 100644 --- a/src/lib/libcrypto/conf/conf_mod.c +++ b/src/lib/libcrypto/conf/conf_mod.c | |||
@@ -230,7 +230,7 @@ static int module_run(const CONF *cnf, char *name, char *value, | |||
230 | { | 230 | { |
231 | if (!(flags & CONF_MFLAGS_SILENT)) | 231 | if (!(flags & CONF_MFLAGS_SILENT)) |
232 | { | 232 | { |
233 | char rcode[10]; | 233 | char rcode[DECIMAL_SIZE(ret)+1]; |
234 | CONFerr(CONF_F_CONF_MODULES_LOAD, CONF_R_MODULE_INITIALIZATION_ERROR); | 234 | CONFerr(CONF_F_CONF_MODULES_LOAD, CONF_R_MODULE_INITIALIZATION_ERROR); |
235 | sprintf(rcode, "%-8d", ret); | 235 | sprintf(rcode, "%-8d", ret); |
236 | ERR_add_error_data(6, "module=", name, ", value=", value, ", retcode=", rcode); | 236 | ERR_add_error_data(6, "module=", name, ", value=", value, ", retcode=", rcode); |