diff --git a/crypto/conf/conf.h b/crypto/conf/conf.h index 655fe2a6f685d81023ff97fad598a790e0218dfd..724378d07a2185a5e3e48144453eee6d0fe74298 100644 --- a/crypto/conf/conf.h +++ b/crypto/conf/conf.h @@ -86,15 +86,15 @@ typedef struct conf_method_st CONF_METHOD; struct conf_method_st { const char *name; - CONF *(MS_FAR *create)(CONF_METHOD *meth); - int (MS_FAR *init)(CONF *conf); - int (MS_FAR *destroy)(CONF *conf); - int (MS_FAR *destroy_data)(CONF *conf); - int (MS_FAR *load_bio)(CONF *conf, BIO *bp, long *eline); - int (MS_FAR *dump)(CONF *conf, BIO *bp); - int (MS_FAR *is_number)(CONF *conf, char c); - int (MS_FAR *to_int)(CONF *conf, char c); - int (MS_FAR *load)(CONF *conf, const char *name, long *eline); + CONF *(*create)(CONF_METHOD *meth); + int (*init)(CONF *conf); + int (*destroy)(CONF *conf); + int (*destroy_data)(CONF *conf); + int (*load_bio)(CONF *conf, BIO *bp, long *eline); + int (*dump)(CONF *conf, BIO *bp); + int (*is_number)(CONF *conf, char c); + int (*to_int)(CONF *conf, char c); + int (*load)(CONF *conf, const char *name, long *eline); }; int CONF_set_default_method(CONF_METHOD *meth);