diff options
author | Ben Laurie <ben@openssl.org> | 1999-04-17 21:25:43 +0000 |
---|---|---|
committer | Ben Laurie <ben@openssl.org> | 1999-04-17 21:25:43 +0000 |
commit | e778802f53c8d47e96a6e4cbc776eb6e1d4c461a (patch) | |
tree | 719d4dd0fc69b355c6d8329af1f90b2c4f603548 /crypto/x509/by_file.c | |
parent | d77b3054cd87c2b13fa0169931f74b8e0dac5252 (diff) | |
download | openssl-new-e778802f53c8d47e96a6e4cbc776eb6e1d4c461a.tar.gz |
Massive constification.
Diffstat (limited to 'crypto/x509/by_file.c')
-rw-r--r-- | crypto/x509/by_file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/x509/by_file.c b/crypto/x509/by_file.c index 09ebb9bf08..991f04aad9 100644 --- a/crypto/x509/by_file.c +++ b/crypto/x509/by_file.c @@ -140,7 +140,7 @@ char **ret; int X509_load_cert_file(ctx,file,type) X509_LOOKUP *ctx; -char *file; +const char *file; int type; { int ret=0; @@ -210,7 +210,7 @@ err: int X509_load_crl_file(ctx,file,type) X509_LOOKUP *ctx; -char *file; +const char *file; int type; { int ret=0; |