The branch OpenSSL_1_0_2-stable has been updated
       via  3735a900eddcb7a1355e43fa3ad8928db7837dcb (commit)
      from  6df2a8c664493eda491c7a996b4855ed5b0685c4 (commit)


- Log -----------------------------------------------------------------
commit 3735a900eddcb7a1355e43fa3ad8928db7837dcb
Author: Xiaoyin Liu <xiaoy...@users.noreply.github.com>
Date:   Sat Aug 5 02:31:04 2017 -0400

    Add missing HTML tag in www_body in s_server.c
    
    In the generated HTML document, the `<pre>` tag is not closed.
    
    Reviewed-by: Richard Levitte <levi...@openssl.org>
    Reviewed-by: Kurt Roeckx <k...@roeckx.be>
    Reviewed-by: Rich Salz <rs...@openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/4088)
    (cherry picked from commit 1a9f5cf0d58629ab8972f50e937d8ab78bf27b6f)

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

Summary of changes:
 apps/s_server.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apps/s_server.c b/apps/s_server.c
index d758713..98ffc09 100644
--- a/apps/s_server.c
+++ b/apps/s_server.c
@@ -3017,7 +3017,7 @@ static int www_body(char *hostname, int s, int stype, 
unsigned char *context)
                 PEM_write_bio_X509(io, peer);
             } else
                 BIO_puts(io, "no client certificate available\n");
-            BIO_puts(io, "</BODY></HTML>\r\n\r\n");
+            BIO_puts(io, "</pre></BODY></HTML>\r\n\r\n");
             break;
         } else if ((www == 2 || www == 3)
                    && (strncmp("GET /", buf, 5) == 0)) {
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits

Reply via email to