diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/conf/conf.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/lib/libcrypto/conf/conf.h b/src/lib/libcrypto/conf/conf.h index 3c03fb19c0..f4671442ab 100644 --- a/src/lib/libcrypto/conf/conf.h +++ b/src/lib/libcrypto/conf/conf.h | |||
@@ -129,6 +129,7 @@ int CONF_dump_fp(LHASH *conf, FILE *out); | |||
129 | int CONF_dump_bio(LHASH *conf, BIO *out); | 129 | int CONF_dump_bio(LHASH *conf, BIO *out); |
130 | 130 | ||
131 | void OPENSSL_config(const char *config_name); | 131 | void OPENSSL_config(const char *config_name); |
132 | void OPENSSL_no_config(void); | ||
132 | 133 | ||
133 | /* New conf code. The semantics are different from the functions above. | 134 | /* New conf code. The semantics are different from the functions above. |
134 | If that wasn't the case, the above functions would have been replaced */ | 135 | If that wasn't the case, the above functions would have been replaced */ |
@@ -141,10 +142,10 @@ struct conf_st | |||
141 | }; | 142 | }; |
142 | 143 | ||
143 | CONF *NCONF_new(CONF_METHOD *meth); | 144 | CONF *NCONF_new(CONF_METHOD *meth); |
144 | CONF_METHOD *NCONF_default(); | 145 | CONF_METHOD *NCONF_default(void); |
145 | CONF_METHOD *NCONF_WIN32(); | 146 | CONF_METHOD *NCONF_WIN32(void); |
146 | #if 0 /* Just to give you an idea of what I have in mind */ | 147 | #if 0 /* Just to give you an idea of what I have in mind */ |
147 | CONF_METHOD *NCONF_XML(); | 148 | CONF_METHOD *NCONF_XML(void); |
148 | #endif | 149 | #endif |
149 | void NCONF_free(CONF *conf); | 150 | void NCONF_free(CONF *conf); |
150 | void NCONF_free_data(CONF *conf); | 151 | void NCONF_free_data(CONF *conf); |
@@ -176,6 +177,7 @@ int CONF_modules_load_file(const char *filename, const char *appname, | |||
176 | unsigned long flags); | 177 | unsigned long flags); |
177 | void CONF_modules_unload(int all); | 178 | void CONF_modules_unload(int all); |
178 | void CONF_modules_finish(void); | 179 | void CONF_modules_finish(void); |
180 | void CONF_modules_free(void); | ||
179 | int CONF_module_add(const char *name, conf_init_func *ifunc, | 181 | int CONF_module_add(const char *name, conf_init_func *ifunc, |
180 | conf_finish_func *ffunc); | 182 | conf_finish_func *ffunc); |
181 | 183 | ||