[openssl] openssl-3.0 update

tomas at openssl.org tomas at openssl.org
Tue Sep 14 13:01:36 UTC 2021


The branch openssl-3.0 has been updated
       via  42ea0a86e89d84c2d649b268ebbfb43a9344d33e (commit)
      from  ad0697696cc3d9f4a588a3b2d48d898619dbe228 (commit)


- Log -----------------------------------------------------------------
commit 42ea0a86e89d84c2d649b268ebbfb43a9344d33e
Author: Dr. David von Oheimb <David.von.Oheimb at siemens.com>
Date:   Mon Sep 13 08:14:58 2021 +0200

    80-test_cmp_http.t: Fix handling of empty HTTP proxy string
    
    Fixes #16546
    
    Reviewed-by: Tomas Mraz <tomas at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/16593)
    
    (cherry picked from commit 1ed3249f253e4490a813279e2eb253c8e5cfaabb)

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

Summary of changes:
 test/recipes/80-test_cmp_http.t | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/recipes/80-test_cmp_http.t b/test/recipes/80-test_cmp_http.t
index 7bd95337e8..92f11e8ac8 100644
--- a/test/recipes/80-test_cmp_http.t
+++ b/test/recipes/80-test_cmp_http.t
@@ -42,8 +42,8 @@ sub chop_dblquot { # chop any leading and trailing '"' (needed for Windows)
     return $str;
 }
 
-my $proxy = "<EMPTY>";
-$proxy = chop_dblquot($ENV{http_proxy} // $ENV{HTTP_PROXY} // $proxy);
+my $proxy = chop_dblquot($ENV{http_proxy} // $ENV{HTTP_PROXY} // "");
+$proxy = "<EMPTY>" if $proxy eq "";
 $proxy =~ s{^https?://}{}i;
 my $no_proxy = $ENV{no_proxy} // $ENV{NO_PROXY};
 


More information about the openssl-commits mailing list