From c34a652e1ef9425b2c350aedec8f8ef94ec334a9 Mon Sep 17 00:00:00 2001
From: "Dr. Stephen Henson" <steve@openssl.org>
Date: Tue, 8 Mar 2011 13:29:46 +0000
Subject: [PATCH] Remove redirection from fipsalgtest.pl script.

---
 fips/fipsalgtest.pl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fips/fipsalgtest.pl b/fips/fipsalgtest.pl
index 0b6ac0f3fa..af778a47a9 100644
--- a/fips/fipsalgtest.pl
+++ b/fips/fipsalgtest.pl
@@ -760,7 +760,7 @@ sub run_tests {
             $cmd .= "\"$req\" \"$out\"";
         }
         else {
-            $cmd .= "<\"$req\" >\"$out\"";
+            $cmd .= "\"$req\" \"$out\"";
         }
         print STDERR "DEBUG: running test $tname\n" if ( $debug && !$verify );
         system($cmd);
@@ -776,7 +776,7 @@ sub run_tests {
                 $vout =~ s/\.rsp$/.ver/;
                 $tcmd = $verify_special{$tname};
                 $cmd  = "$cmd_prefix$tprefix$tcmd ";
-                $cmd .= "<\"$out\" >\"$vout\"";
+                $cmd .= "\"$out\" \"$vout\"";
                 system($cmd);
                 if ( $? != 0 ) {
                     print STDERR
-- 
2.40.0