diff options
Diffstat (limited to 'src/lib/libcrypto/lhash/lh_stats.c')
-rw-r--r-- | src/lib/libcrypto/lhash/lh_stats.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/libcrypto/lhash/lh_stats.c b/src/lib/libcrypto/lhash/lh_stats.c index 5aa7766aa6..815615e338 100644 --- a/src/lib/libcrypto/lhash/lh_stats.c +++ b/src/lib/libcrypto/lhash/lh_stats.c | |||
@@ -139,7 +139,7 @@ void lh_node_usage_stats(LHASH *lh, FILE *out) | |||
139 | #else | 139 | #else |
140 | 140 | ||
141 | #ifndef OPENSSL_NO_FP_API | 141 | #ifndef OPENSSL_NO_FP_API |
142 | void lh_stats(const LHASH *lh, FILE *fp) | 142 | void lh_stats(const _LHASH *lh, FILE *fp) |
143 | { | 143 | { |
144 | BIO *bp; | 144 | BIO *bp; |
145 | 145 | ||
@@ -151,7 +151,7 @@ void lh_stats(const LHASH *lh, FILE *fp) | |||
151 | end:; | 151 | end:; |
152 | } | 152 | } |
153 | 153 | ||
154 | void lh_node_stats(const LHASH *lh, FILE *fp) | 154 | void lh_node_stats(const _LHASH *lh, FILE *fp) |
155 | { | 155 | { |
156 | BIO *bp; | 156 | BIO *bp; |
157 | 157 | ||
@@ -163,7 +163,7 @@ void lh_node_stats(const LHASH *lh, FILE *fp) | |||
163 | end:; | 163 | end:; |
164 | } | 164 | } |
165 | 165 | ||
166 | void lh_node_usage_stats(const LHASH *lh, FILE *fp) | 166 | void lh_node_usage_stats(const _LHASH *lh, FILE *fp) |
167 | { | 167 | { |
168 | BIO *bp; | 168 | BIO *bp; |
169 | 169 | ||
@@ -177,7 +177,7 @@ end:; | |||
177 | 177 | ||
178 | #endif | 178 | #endif |
179 | 179 | ||
180 | void lh_stats_bio(const LHASH *lh, BIO *out) | 180 | void lh_stats_bio(const _LHASH *lh, BIO *out) |
181 | { | 181 | { |
182 | BIO_printf(out,"num_items = %lu\n",lh->num_items); | 182 | BIO_printf(out,"num_items = %lu\n",lh->num_items); |
183 | BIO_printf(out,"num_nodes = %u\n",lh->num_nodes); | 183 | BIO_printf(out,"num_nodes = %u\n",lh->num_nodes); |
@@ -205,7 +205,7 @@ void lh_stats_bio(const LHASH *lh, BIO *out) | |||
205 | #endif | 205 | #endif |
206 | } | 206 | } |
207 | 207 | ||
208 | void lh_node_stats_bio(const LHASH *lh, BIO *out) | 208 | void lh_node_stats_bio(const _LHASH *lh, BIO *out) |
209 | { | 209 | { |
210 | LHASH_NODE *n; | 210 | LHASH_NODE *n; |
211 | unsigned int i,num; | 211 | unsigned int i,num; |
@@ -218,7 +218,7 @@ void lh_node_stats_bio(const LHASH *lh, BIO *out) | |||
218 | } | 218 | } |
219 | } | 219 | } |
220 | 220 | ||
221 | void lh_node_usage_stats_bio(const LHASH *lh, BIO *out) | 221 | void lh_node_usage_stats_bio(const _LHASH *lh, BIO *out) |
222 | { | 222 | { |
223 | LHASH_NODE *n; | 223 | LHASH_NODE *n; |
224 | unsigned long num; | 224 | unsigned long num; |