From: Dr. David von Oheimb Date: Thu, 25 Jun 2020 09:55:56 +0000 (+0200) Subject: check-format.pl: Add an entry about it to NEWS.md and to CHANGES.md X-Git-Tag: openssl-3.0.0-alpha6~96 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=16c6534b961a723781bb827211c705c7d7fb3727;p=thirdparty%2Fopenssl.git check-format.pl: Add an entry about it to NEWS.md and to CHANGES.md Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/12270) --- diff --git a/CHANGES.md b/CHANGES.md index 3a267d6c251..5ff188c18c1 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -240,6 +240,13 @@ OpenSSL 3.0 *David von Oheimb* + * Added `util/check-format.pl`, a tool for checking adherence to the + OpenSSL coding style . + The checks performed are incomplete and yield some false positives. + Still the tool should be useful for detecting most typical glitches. + + *David von Oheimb* + * BIO_do_connect and BIO_do_handshake have been extended: If domain name resolution yields multiple IP addresses all of them are tried after connect() failures. diff --git a/NEWS.md b/NEWS.md index ed99e8cd008..801016f2b5c 100644 --- a/NEWS.md +++ b/NEWS.md @@ -41,6 +41,7 @@ OpenSSL 3.0 All widely used CMP features are supported for both clients and servers. * Added a proper HTTP(S) client to libcrypto supporting GET and POST, redirection, plain and ASN.1-encoded contents, proxies, and timeouts. + * Added util/check-format.pl for checking adherence to the coding guidelines. * Added OSSL_SERIALIZER, a generic serializer API. * Added OSSL_PARAM_BLD, an easier to use API to OSSL_PARAM. * Added error raising macros, ERR_raise() and ERR_raise_data().