constify
authorBodo Möller <bodo@openssl.org>
Fri, 15 Feb 2002 10:19:22 +0000 (10:19 +0000)
committerBodo Möller <bodo@openssl.org>
Fri, 15 Feb 2002 10:19:22 +0000 (10:19 +0000)
crypto/conf/conf.h
crypto/conf/conf_mall.c

index 176d64b57912d826fc0a33258c56a66b9c9a2cd3..4e14cd000f1683f076b8f4bd55d1f07ec19345ad 100644 (file)
@@ -128,7 +128,7 @@ void CONF_free(LHASH *conf);
 int CONF_dump_fp(LHASH *conf, FILE *out);
 int CONF_dump_bio(LHASH *conf, BIO *out);
 
-void OPENSSL_config(char *config_name);
+void OPENSSL_config(const char *config_name);
 
 /* New conf code.  The semantics are different from the functions above.
    If that wasn't the case, the above functions would have been replaced */
index 18dbf11614c8e7dac785d3f5a03e2e908d73ac53..e7b4bdb65e190232369fe207bc7b51bee5c5d4fb 100644 (file)
@@ -81,7 +81,7 @@ void OPENSSL_load_builtin_modules(void)
 
 static int openssl_configured = 0;
 
-void OPENSSL_config(char *config_name)
+void OPENSSL_config(const char *config_name)
        {
        int err_exit = 0;
        char *file;