[openssl] master update

Dr. Paul Dale pauli at openssl.org
Fri Jun 25 02:23:53 UTC 2021


The branch master has been updated
       via  e86b2e78a4b7b618824c4e5cdf7f5d32feacd8b6 (commit)
      from  11efa7d45ba08fe4d8a11332680b1021934733cf (commit)


- Log -----------------------------------------------------------------
commit e86b2e78a4b7b618824c4e5cdf7f5d32feacd8b6
Author: Richard Levitte <levitte at openssl.org>
Date:   Thu Jun 24 06:54:14 2021 +0200

    OpenSSL::Util::fixup_cmd_elements(): Include '!' among the VMS chars to process
    
    ! is the DCL character that starts a comment, and therefore acts as a
    cut-off if not quoted.
    
    Reviewed-by: Tomas Mraz <tomas at openssl.org>
    Reviewed-by: Paul Dale <pauli at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/15889)

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

Summary of changes:
 util/perl/OpenSSL/Util.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/util/perl/OpenSSL/Util.pm b/util/perl/OpenSSL/Util.pm
index 074bb00d99..44e87afee2 100644
--- a/util/perl/OpenSSL/Util.pm
+++ b/util/perl/OpenSSL/Util.pm
@@ -154,7 +154,7 @@ sub fixup_cmd_elements {
     if ( $^O eq "VMS") {        # VMS setup
         $arg_formatter = sub {
             $_ = shift;
-            if ($_ eq '' || /\s|["[:upper:]]/) {
+            if ($_ eq '' || /\s|[!"[:upper:]]/) {
                 s/"/""/g;
                 '"'.$_.'"';
             } else {


More information about the openssl-commits mailing list