[openssl] master update

kaduk at mit.edu kaduk at mit.edu
Wed May 13 07:03:05 UTC 2020


The branch master has been updated
       via  dd63f9bbfc95931e4f41558fbc7a2ffb68b0eef0 (commit)
      from  7ef43790617cb08b4bb4141df716dfb37385fe5c (commit)


- Log -----------------------------------------------------------------
commit dd63f9bbfc95931e4f41558fbc7a2ffb68b0eef0
Author: Benjamin Kaduk <kaduk at mit.edu>
Date:   Mon May 11 09:29:24 2020 -0700

    Fix FreeBSD build with --strict-warnings
    
    apps/lib/http_server.c needs to include string.h in order to get a prototype
    for strerror().
    
    Reviewed-by: Shane Lontis <shane.lontis at oracle.com>
    (Merged from https://github.com/openssl/openssl/pull/11797)

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

Summary of changes:
 apps/lib/http_server.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/apps/lib/http_server.c b/apps/lib/http_server.c
index 6db11f4150..2b5c9f5dcd 100644
--- a/apps/lib/http_server.c
+++ b/apps/lib/http_server.c
@@ -17,6 +17,7 @@
 # define _POSIX_C_SOURCE 2
 #endif
 
+#include <string.h>
 #include <ctype.h>
 #include "http_server.h"
 #include "internal/sockets.h"


More information about the openssl-commits mailing list