From: Richard Levitte Date: Mon, 21 Mar 2016 17:30:30 +0000 (+0100) Subject: Just like bio_out, bio_err needs the linebuffer filter on VMS X-Git-Tag: OpenSSL_1_1_0-pre5~257 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=149bd5d6cb3936480e64549902f058153eaf840b;p=oweals%2Fopenssl.git Just like bio_out, bio_err needs the linebuffer filter on VMS Reviewed-by: Rich Salz --- diff --git a/apps/apps.c b/apps/apps.c index b4307427a5..128f387593 100644 --- a/apps/apps.c +++ b/apps/apps.c @@ -2486,6 +2486,17 @@ BIO *dup_bio_out(int format) return b; } +BIO *dup_bio_err(int format) +{ + BIO *b = BIO_new_fp(stderr, + BIO_NOCLOSE | (istext(format) ? BIO_FP_TEXT : 0)); +#ifdef OPENSSL_SYS_VMS + if (istext(format)) + b = BIO_push(BIO_new(BIO_f_linebuffer()), b); +#endif + return b; +} + void unbuffer(FILE *fp) { setbuf(fp, NULL); diff --git a/apps/apps.h b/apps/apps.h index 7be7325429..fc480e16c8 100644 --- a/apps/apps.h +++ b/apps/apps.h @@ -156,6 +156,7 @@ extern BIO *bio_out; extern BIO *bio_err; BIO *dup_bio_in(int format); BIO *dup_bio_out(int format); +BIO *dup_bio_err(int format); BIO *bio_open_owner(const char *filename, int format, int private); BIO *bio_open_default(const char *filename, char mode, int format); BIO *bio_open_default_quiet(const char *filename, char mode, int format); diff --git a/apps/openssl.c b/apps/openssl.c index d460a6b886..2d9ddaa56b 100644 --- a/apps/openssl.c +++ b/apps/openssl.c @@ -229,7 +229,7 @@ int main(int argc, char *argv[]) default_config_file = make_config_name(); bio_in = dup_bio_in(FORMAT_TEXT); bio_out = dup_bio_out(FORMAT_TEXT); - bio_err = BIO_new_fp(stderr, BIO_NOCLOSE | BIO_FP_TEXT); + bio_err = dup_bio_err(FORMAT_TEXT); #if defined( OPENSSL_SYS_VMS) copied_argv = argv = copy_argv(&argc, argv);