diff options
author | Richard Levitte <levitte@openssl.org> | 2000-10-19 10:29:27 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2000-10-19 10:29:27 +0200 |
commit | c8cda405e7332f51ef224811bb8e63a92a6d8d5d (patch) | |
tree | c4005b286d414c80b7b0576a27254d4b988671d9 /crypto/conf/conf_err.c | |
parent | Make it possible for methods to load from something other than a BIO, (diff) | |
download | openssl-c8cda405e7332f51ef224811bb8e63a92a6d8d5d.tar.xz openssl-c8cda405e7332f51ef224811bb8e63a92a6d8d5d.zip |
Keep binary backward compatibility by putting new method function
pointers at the end of the structure.
Diffstat (limited to 'crypto/conf/conf_err.c')
-rw-r--r-- | crypto/conf/conf_err.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/conf/conf_err.c b/crypto/conf/conf_err.c index c3766d2886..89e220f3ff 100644 --- a/crypto/conf/conf_err.c +++ b/crypto/conf/conf_err.c @@ -76,7 +76,9 @@ static ERR_STRING_DATA CONF_str_functs[]= {ERR_PACK(0,CONF_F_NCONF_GET_NUMBER_E,0), "NCONF_get_number_e"}, {ERR_PACK(0,CONF_F_NCONF_GET_SECTION,0), "NCONF_get_section"}, {ERR_PACK(0,CONF_F_NCONF_GET_STRING,0), "NCONF_get_string"}, +{ERR_PACK(0,CONF_F_NCONF_LOAD,0), "NCONF_load"}, {ERR_PACK(0,CONF_F_NCONF_LOAD_BIO,0), "NCONF_load_bio"}, +{ERR_PACK(0,CONF_F_NCONF_LOAD_FP,0), "NCONF_load_fp"}, {ERR_PACK(0,CONF_F_NCONF_NEW,0), "NCONF_new"}, {ERR_PACK(0,CONF_F_STR_COPY,0), "STR_COPY"}, {0,NULL} |