diff options
author | beck <> | 1999-09-29 04:37:45 +0000 |
---|---|---|
committer | beck <> | 1999-09-29 04:37:45 +0000 |
commit | de8f24ea083384bb66b32ec105dc4743c5663cdf (patch) | |
tree | 1412176ae62a3cab2cf2b0b92150fcbceaac6092 /src/lib/libcrypto/x509/x509_d2.c | |
parent | cb929d29896bcb87c2a97417fbd03e50078fc178 (diff) | |
download | openbsd-de8f24ea083384bb66b32ec105dc4743c5663cdf.tar.gz openbsd-de8f24ea083384bb66b32ec105dc4743c5663cdf.tar.bz2 openbsd-de8f24ea083384bb66b32ec105dc4743c5663cdf.zip |
OpenSSL 0.9.4 merge
Diffstat (limited to 'src/lib/libcrypto/x509/x509_d2.c')
-rw-r--r-- | src/lib/libcrypto/x509/x509_d2.c | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/src/lib/libcrypto/x509/x509_d2.c b/src/lib/libcrypto/x509/x509_d2.c index 01e22f4cb4..3e7ec5b432 100644 --- a/src/lib/libcrypto/x509/x509_d2.c +++ b/src/lib/libcrypto/x509/x509_d2.c | |||
@@ -60,12 +60,11 @@ | |||
60 | #include <sys/types.h> | 60 | #include <sys/types.h> |
61 | #include <sys/stat.h> | 61 | #include <sys/stat.h> |
62 | #include "cryptlib.h" | 62 | #include "cryptlib.h" |
63 | #include "crypto.h" | 63 | #include <openssl/crypto.h> |
64 | #include "x509.h" | 64 | #include <openssl/x509.h> |
65 | 65 | ||
66 | #ifndef NO_STDIO | 66 | #ifndef NO_STDIO |
67 | int X509_STORE_set_default_paths(ctx) | 67 | int X509_STORE_set_default_paths(X509_STORE *ctx) |
68 | X509_STORE *ctx; | ||
69 | { | 68 | { |
70 | X509_LOOKUP *lookup; | 69 | X509_LOOKUP *lookup; |
71 | 70 | ||
@@ -83,10 +82,8 @@ X509_STORE *ctx; | |||
83 | return(1); | 82 | return(1); |
84 | } | 83 | } |
85 | 84 | ||
86 | int X509_STORE_load_locations(ctx,file,path) | 85 | int X509_STORE_load_locations(X509_STORE *ctx, const char *file, |
87 | X509_STORE *ctx; | 86 | const char *path) |
88 | char *file; | ||
89 | char *path; | ||
90 | { | 87 | { |
91 | X509_LOOKUP *lookup; | 88 | X509_LOOKUP *lookup; |
92 | 89 | ||