summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/x509/x509_d2.c
diff options
context:
space:
mode:
authorbeck <>1999-09-29 04:37:45 +0000
committerbeck <>1999-09-29 04:37:45 +0000
commitde8f24ea083384bb66b32ec105dc4743c5663cdf (patch)
tree1412176ae62a3cab2cf2b0b92150fcbceaac6092 /src/lib/libcrypto/x509/x509_d2.c
parentcb929d29896bcb87c2a97417fbd03e50078fc178 (diff)
downloadopenbsd-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.c13
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
67int X509_STORE_set_default_paths(ctx) 67int X509_STORE_set_default_paths(X509_STORE *ctx)
68X509_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
86int X509_STORE_load_locations(ctx,file,path) 85int X509_STORE_load_locations(X509_STORE *ctx, const char *file,
87X509_STORE *ctx; 86 const char *path)
88char *file;
89char *path;
90 { 87 {
91 X509_LOOKUP *lookup; 88 X509_LOOKUP *lookup;
92 89