Deleted Added
full compact
errstr.c (109999) errstr.c (238405)
1/* apps/errstr.c */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved.
4 *
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
8 *

--- 83 unchanged lines hidden (view full) ---

92 if ((out != NULL) && BIO_set_fp(out,stdout,BIO_NOCLOSE))
93 {
94#ifdef OPENSSL_SYS_VMS
95 {
96 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
97 out = BIO_push(tmpbio, out);
98 }
99#endif
1/* apps/errstr.c */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved.
4 *
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
8 *

--- 83 unchanged lines hidden (view full) ---

92 if ((out != NULL) && BIO_set_fp(out,stdout,BIO_NOCLOSE))
93 {
94#ifdef OPENSSL_SYS_VMS
95 {
96 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
97 out = BIO_push(tmpbio, out);
98 }
99#endif
100 lh_node_stats_bio((LHASH *)ERR_get_string_table(),out);
101 lh_stats_bio((LHASH *)ERR_get_string_table(),out);
102 lh_node_usage_stats_bio((LHASH *)
103 ERR_get_string_table(),out);
100 lh_ERR_STRING_DATA_node_stats_bio(
101 ERR_get_string_table(), out);
102 lh_ERR_STRING_DATA_stats_bio(ERR_get_string_table(),
103 out);
104 lh_ERR_STRING_DATA_node_usage_stats_bio(
105 ERR_get_string_table(),out);
104 }
105 if (out != NULL) BIO_free_all(out);
106 argc--;
107 argv++;
108 }
109
110 for (i=1; i<argc; i++)
111 {

--- 15 unchanged lines hidden ---
106 }
107 if (out != NULL) BIO_free_all(out);
108 argc--;
109 argv++;
110 }
111
112 for (i=1; i<argc; i++)
113 {

--- 15 unchanged lines hidden ---