[openssl-commits] [openssl] master update

Andy Polyakov appro at openssl.org
Thu Aug 11 12:39:09 UTC 2016


The branch master has been updated
       via  6ebce6803eccc29d00b8b15a858872a1b94d0cf0 (commit)
      from  a5a95f8d65c2c616ebee13ae4b33eacde34bb2d3 (commit)


- Log -----------------------------------------------------------------
commit 6ebce6803eccc29d00b8b15a858872a1b94d0cf0
Author: Andy Polyakov <appro at openssl.org>
Date:   Mon Aug 1 10:48:13 2016 +0200

    crypto/ui/ui_openssl.c: let new-line through after query in Windows path.
    
    Originally new-line was suppressed, because double new-line was
    observed under wine. But it appears rather to be a wine bug,
    because on real Windows new-line is much needed.
    
    Reviewed-by: Richard Levitte <levitte at openssl.org>

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

Summary of changes:
 crypto/ui/ui_openssl.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/crypto/ui/ui_openssl.c b/crypto/ui/ui_openssl.c
index 7d1e389..98fb0e1 100644
--- a/crypto/ui/ui_openssl.c
+++ b/crypto/ui/ui_openssl.c
@@ -313,7 +313,6 @@ static int read_string_inner(UI *ui, UI_STRING *uis, int echo, int strip_nl)
                 wresult[numread-2] == L'\r' && wresult[numread-1] == L'\n') {
                 wresult[numread-2] = L'\n';
                 numread--;
-                echo_eol = 0;
             }
             wresult[numread] = '\0';
             if (WideCharToMultiByte(CP_UTF8, 0, wresult, -1,
@@ -329,7 +328,6 @@ static int read_string_inner(UI *ui, UI_STRING *uis, int echo, int strip_nl)
                 result[numread-2] == '\r' && result[numread-1] == '\n') {
                 result[numread-2] = '\n';
                 numread--;
-                echo_eol = 0;
             }
             result[numread] = '\0';
             p = result;


More information about the openssl-commits mailing list