Remove an unused field in ossl_shim
[openssl.git] / util / copy.pl
index c4bcccdee6b318ed8cc6701c9a67c4bf21d8f607..c4aeea6a18cdf667231dbf357f9abddf6602bc6f 100644 (file)
@@ -26,7 +26,7 @@ foreach $arg (@ARGV) {
                next;
                }
        $arg =~ s|\\|/|g;       # compensate for bug/feature in cygwin glob...
-       foreach (glob $arg)
+       foreach (glob qq("$arg"))
                {
                push @filelist, $_;
                }
@@ -40,7 +40,7 @@ if ($fnum <= 1)
        }
 
 $dest = pop @filelist;
-       
+
 if ($fnum > 2 && ! -d $dest)
        {
        die "Destination must be a directory";
@@ -73,5 +73,5 @@ foreach (@filelist)
        close(OUT);
        print "Copying: $_ to $dfile\n";
        }
-               
+