summaryrefslogtreecommitdiffstats
path: root/crypto/x509/x509_d2.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-05-09 10:12:10 +0000
committerBodo Möller <bodo@openssl.org>1999-05-09 10:12:10 +0000
commit303c002898915c5636dfa9d295b9de38db65207a (patch)
treec440e05109738a32759518450db9c4820cbaf302 /crypto/x509/x509_d2.c
parenta5ab0532caf9a11f20eeb49b78ddc8e90f64a418 (diff)
Use "const char *" instead of "char *" for filenames passed to functions.
Submitted by: Reviewed by: PR:
Diffstat (limited to 'crypto/x509/x509_d2.c')
-rw-r--r--crypto/x509/x509_d2.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/x509/x509_d2.c b/crypto/x509/x509_d2.c
index f8f1aa6b7b..3e7ec5b432 100644
--- a/crypto/x509/x509_d2.c
+++ b/crypto/x509/x509_d2.c
@@ -82,7 +82,8 @@ int X509_STORE_set_default_paths(X509_STORE *ctx)
return(1);
}
-int X509_STORE_load_locations(X509_STORE *ctx, char *file, char *path)
+int X509_STORE_load_locations(X509_STORE *ctx, const char *file,
+ const char *path)
{
X509_LOOKUP *lookup;