TLSProxy/Proxy.pm: preclude output intermix.
authorAndy Polyakov <appro@openssl.org>
Wed, 18 Apr 2018 08:42:23 +0000 (10:42 +0200)
committerAndy Polyakov <appro@openssl.org>
Wed, 18 Apr 2018 17:58:15 +0000 (19:58 +0200)
s_server -rev emits info output on stderr, i.e. unbufferred, which
risks intermixing with output from TLSProxy itself on non-line
boundaries, which in turn is confusing to TAP parser.

Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5975)

util/perl/TLSProxy/Proxy.pm

index df17731b2d6461187f283766ceb419a9d08744ec..de6d2fdf50fbad1d7065784c1ba0bc734b7f9025 100644 (file)
@@ -239,7 +239,7 @@ sub start
     open(my $savedin, "<&STDIN");
 
     # Temporarily replace STDIN so that sink process can inherit it...
-    $pid = open(STDIN, "$execcmd |") or die "Failed to $execcmd: $!\n";
+    $pid = open(STDIN, "$execcmd 2>&1 |") or die "Failed to $execcmd: $!\n";
     $self->{real_serverpid} = $pid;
 
     # Process the output from s_server until we find the ACCEPT line, which