[openssl-commits] [openssl] OpenSSL_1_0_2-stable update

Rich Salz rsalz at openssl.org
Sat Jul 15 13:11:36 UTC 2017


The branch OpenSSL_1_0_2-stable has been updated
       via  b83265697cae0e211c55a58078c0650bc78b0908 (commit)
      from  58314197b54cc1417cfa62d1987462f72a2559e0 (commit)


- Log -----------------------------------------------------------------
commit b83265697cae0e211c55a58078c0650bc78b0908
Author: simon-p-r <simon.ricaldone at circabs.com>
Date:   Mon Jul 10 23:19:33 2017 +0100

    fix copy and copy-if-different whitespace problem
    
    From https://github.com/openssl/openssl/pull/1023
    
    CLA: trivial
    
    Reviewed-by: Andy Polyakov <appro at openssl.org>
    Reviewed-by: Rich Salz <rsalz at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/3904)

-----------------------------------------------------------------------

Summary of changes:
 util/copy-if-different.pl | 2 +-
 util/copy.pl              | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/util/copy-if-different.pl b/util/copy-if-different.pl
index ec99e08..e1245f5 100644
--- a/util/copy-if-different.pl
+++ b/util/copy-if-different.pl
@@ -12,7 +12,7 @@ my @filelist;
 
 foreach my $arg (@ARGV) {
 	$arg =~ s|\\|/|g;	# compensate for bug/feature in cygwin glob...
-	foreach (glob $arg)
+	foreach (glob qq("$arg"))
 		{
 		push @filelist, $_;
 		}
diff --git a/util/copy.pl b/util/copy.pl
index eba6d58..a6b2a54 100644
--- a/util/copy.pl
+++ b/util/copy.pl
@@ -19,7 +19,7 @@ foreach $arg (@ARGV) {
 		next;
 		}
 	$arg =~ s|\\|/|g;	# compensate for bug/feature in cygwin glob...
-	foreach (glob $arg)
+	foreach (glob qq("$arg"))
 		{
 		push @filelist, $_;
 		}


More information about the openssl-commits mailing list