[openssl] master update

Matt Caswell matt at openssl.org
Thu Aug 29 10:01:59 UTC 2019


The branch master has been updated
       via  deaaac2c017491006e7dbbf3d3555fadcefda032 (commit)
      from  ed71e917e9fb763adfb36a9cee0e0935aee898e2 (commit)


- Log -----------------------------------------------------------------
commit deaaac2c017491006e7dbbf3d3555fadcefda032
Author: Matt Caswell <matt at openssl.org>
Date:   Wed Aug 28 17:30:14 2019 +0100

    Update fuzz README.md
    
    Building with enable-fuzz-afl has always required no-shared. We now also
    need no-module for a successful build. Therefore update the README
    accordingly.
    
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/9721)

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

Summary of changes:
 fuzz/README.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/fuzz/README.md b/fuzz/README.md
index 44c73f857e..8e7c48d45e 100644
--- a/fuzz/README.md
+++ b/fuzz/README.md
@@ -60,9 +60,9 @@ AFL
 Configure for fuzzing:
 
     $ sudo apt-get install afl-clang
-    $ CC=afl-clang-fast ./config enable-fuzz-afl no-shared -DPEDANTIC \
-        enable-tls1_3 enable-weak-ssl-ciphers enable-rc5 enable-md2 \
-        enable-ssl3 enable-ssl3-method enable-nextprotoneg \
+    $ CC=afl-clang-fast ./config enable-fuzz-afl no-shared no-module \
+        -DPEDANTIC enable-tls1_3 enable-weak-ssl-ciphers enable-rc5 \
+        enable-md2 enable-ssl3 enable-ssl3-method enable-nextprotoneg \
         enable-ec_nistp_64_gcc_128 -fno-sanitize=alignment \
         --debug
     $ make


More information about the openssl-commits mailing list