From: Frank Lichtenheld Date: Mon, 16 Feb 2026 12:30:20 +0000 (+0100) Subject: clang-format: Add missing InsertBraces: true X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=344f13fcdfc159277e7ba7d28e23537d718e7cef;p=thirdparty%2Fopenvpn.git clang-format: Add missing InsertBraces: true This takes care to add missing braces in case of one-line if-statements or loops. Apparently we never tested this specific error and we had no existing cases in the code when we did the reformat. Noticed this during a code review. Change-Id: Idb1e96a4d0a618089db4290c5980d192985b5d29 Signed-off-by: Frank Lichtenheld Acked-by: Gert Doering Gerrit URL: https://gerrit.openvpn.net/c/openvpn/+/1529 Message-Id: <20260216123026.3310-1-gert@greenie.muc.de> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg35635.html Signed-off-by: Gert Doering --- diff --git a/.clang-format b/.clang-format index 1cce4c36f..cbec0a460 100644 --- a/.clang-format +++ b/.clang-format @@ -31,6 +31,7 @@ IndentCaseLabels: true IndentGotoLabels: false IndentWidth: '4' IndentWrappedFunctionNames: false +InsertBraces: true KeepEmptyLinesAtTheStartOfBlocks: false MaxEmptyLinesToKeep: '2' PointerAlignment: Right