diff options
Diffstat (limited to 'src/lib/libcrypto/conf/cnf_save.c')
-rw-r--r-- | src/lib/libcrypto/conf/cnf_save.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/lib/libcrypto/conf/cnf_save.c b/src/lib/libcrypto/conf/cnf_save.c index c9018de10e..e907cc2242 100644 --- a/src/lib/libcrypto/conf/cnf_save.c +++ b/src/lib/libcrypto/conf/cnf_save.c | |||
@@ -57,7 +57,7 @@ | |||
57 | */ | 57 | */ |
58 | 58 | ||
59 | #include <stdio.h> | 59 | #include <stdio.h> |
60 | #include "conf.h" | 60 | #include <openssl/conf.h> |
61 | 61 | ||
62 | void print_conf(CONF_VALUE *cv); | 62 | void print_conf(CONF_VALUE *cv); |
63 | 63 | ||
@@ -66,7 +66,7 @@ main() | |||
66 | LHASH *conf; | 66 | LHASH *conf; |
67 | long l; | 67 | long l; |
68 | 68 | ||
69 | conf=CONF_load(NULL,"../../apps/ssleay.cnf",&l); | 69 | conf=CONF_load(NULL,"../../apps/openssl.cnf",&l); |
70 | if (conf == NULL) | 70 | if (conf == NULL) |
71 | { | 71 | { |
72 | fprintf(stderr,"error loading config, line %ld\n",l); | 72 | fprintf(stderr,"error loading config, line %ld\n",l); |
@@ -77,8 +77,7 @@ main() | |||
77 | } | 77 | } |
78 | 78 | ||
79 | 79 | ||
80 | void print_conf(cv) | 80 | void print_conf(CONF_VALUE *cv) |
81 | CONF_VALUE *cv; | ||
82 | { | 81 | { |
83 | int i; | 82 | int i; |
84 | CONF_VALUE *v; | 83 | CONF_VALUE *v; |