diff options
author | Ben Laurie <ben@openssl.org> | 2008-05-26 11:24:29 +0000 |
---|---|---|
committer | Ben Laurie <ben@openssl.org> | 2008-05-26 11:24:29 +0000 |
commit | 3c1d6bbc9242900af0e5db927fdcda38539bd54a (patch) | |
tree | 4d2effd34cdf6d1ec2258f22c86129644d64e03c /apps/errstr.c | |
parent | cab14b980333d2383239e559302c739c9ec433ea (diff) | |
download | openssl-new-3c1d6bbc9242900af0e5db927fdcda38539bd54a.tar.gz |
LHASH revamp. make depend.
Diffstat (limited to 'apps/errstr.c')
-rw-r--r-- | apps/errstr.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/apps/errstr.c b/apps/errstr.c index 19489b0df3..fe3b98077e 100644 --- a/apps/errstr.c +++ b/apps/errstr.c @@ -97,10 +97,12 @@ int MAIN(int argc, char **argv) out = BIO_push(tmpbio, out); } #endif - lh_node_stats_bio((LHASH *)ERR_get_string_table(),out); - lh_stats_bio((LHASH *)ERR_get_string_table(),out); - lh_node_usage_stats_bio((LHASH *) - ERR_get_string_table(),out); + lh_ERR_STRING_DATA_node_stats_bio( + ERR_get_string_table(), out); + lh_ERR_STRING_DATA_stats_bio(ERR_get_string_table(), + out); + lh_ERR_STRING_DATA_node_usage_stats_bio( + ERR_get_string_table(),out); } if (out != NULL) BIO_free_all(out); argc--; |