]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
check-format.pl: Add an entry about it to NEWS.md and to CHANGES.md
authorDr. David von Oheimb <David.von.Oheimb@siemens.com>
Thu, 25 Jun 2020 09:55:56 +0000 (11:55 +0200)
committerDr. David von Oheimb <David.von.Oheimb@siemens.com>
Mon, 20 Jul 2020 09:17:34 +0000 (11:17 +0200)
Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/12270)

CHANGES.md
NEWS.md

index 3a267d6c251a15337d697470ba64b86925aed401..5ff188c18c1de0c0a327d20791f0501c0080c36d 100644 (file)
@@ -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 <https://www.openssl.org/policies/codingstyle.html>.
+   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 ed99e8cd00884a76fa685dea5b76dd82e9f81fd2..801016f2b5ca1f606bc12a8ff96ef88e6d7fa525 100644 (file)
--- 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().