File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,9 @@ my @args="";
2323# that can be done better but I am a perl n00b ;-)
2424my $os =` perl -e 'print "$^O";'` ;
2525
26+ # useful against "failed to flush stdout" messages
27+ STDOUT -> autoflush(1);
28+
2629die " Unable to open $prg " unless -f $prg ;
2730die " Unable to open $distro_openssl " unless -f $distro_openssl ;
2831
Original file line number Diff line number Diff line change @@ -26,6 +26,9 @@ my $openssl_out="";
2626my $socket_regex_bl =' (e|E)rror|\.\/testssl\.sh: line |(f|F)atal|(c|C)ommand not found' ;
2727my $openssl_regex_bl =' (e|E)rror|(f|F)atal|\.\/testssl\.sh: line |Oops|s_client connect problem|(c|C)ommand not found' ;
2828
29+ # useful against "failed to flush stdout" messages
30+ STDOUT -> autoflush(1);
31+
2932# my $socket_json="";
3033# my $openssl_json="";
3134# $check2run_smtp="--jsonfile tmp.json $check2run_smtp";
You can’t perform that action at this time.
0 commit comments