[Git][NTPsec/ntpsec][master] 2 commits: Update NEWS file.

Eric S. Raymond gitlab at mg.gitlab.com
Fri Aug 23 19:36:03 UTC 2019



Eric S. Raymond pushed to branch master at NTPsec / ntpsec


Commits:
67d49e0a by Eric S. Raymond at 2019-08-23T18:09:14Z
Update NEWS file.

- - - - -
8c899d50 by Eric S. Raymond at 2019-08-23T19:35:30Z
Belatedly commit the tidy script.

- - - - -


2 changed files:

- NEWS
- + devel/tidy


Changes:

=====================================
NEWS
=====================================
@@ -18,6 +18,12 @@ rollover in a GPS device.  Each "g" adds the number of seconds in a
 1024-week (10-bit) GPS era. Each "G" adds the number of seconds in a
 8192-week (13-bit) GPS era.
 
+The neoclock4x driver has been removed, due to the hardware and the
+vendor having utterly vanished from the face of the earth.
+
+The NTS ALPN negotiation sequence has been modified for improved
+interoperability with orther NTS implementations.
+
 == 2019-07-10: 1.1.6 ==
 
 Fixes to code quality checks.


=====================================
devel/tidy
=====================================
@@ -0,0 +1,24 @@
+#!/bin/sh
+#
+# Use clang-tidy to fill in all optional control structure braces.
+#
+# Doesn't do the right thing with trailing braces; you must indent hthese by hand.
+# This could be fixed by running clang-format, but this script exists because
+# we're not yet ready for that churn.
+#
+# This sometimes messes up slightly.  It can miss single-statement ifs -
+# that is, nott wrap the body in { } when it should. More seriously, t sometimes
+# places generated closing braces in the middle of assignments and return
+# expressions that should precede them.
+#
+allfiles=`find . \( -name \*.c -or -name \*.cpp -or -name \*.cc \)`
+for sourcefile in $allfiles;
+do
+	clang-tidy \
+		-fix \
+		-fix-errors \
+		--checks=readability-braces-around-statements \
+		$sourcefile
+
+done
+



View it on GitLab: https://gitlab.com/NTPsec/ntpsec/compare/83345b29d4fee71a2ae4b11522aeabd3bf4e32bb...8c899d5073ce5c45531ebc5a1b913e645e9c1c5e

-- 
View it on GitLab: https://gitlab.com/NTPsec/ntpsec/compare/83345b29d4fee71a2ae4b11522aeabd3bf4e32bb...8c899d5073ce5c45531ebc5a1b913e645e9c1c5e
You're receiving this email because of your account on gitlab.com.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.ntpsec.org/pipermail/vc/attachments/20190823/a1365f1b/attachment-0001.htm>


More information about the vc mailing list