]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
build: indent with latest Clang 19
authorDaiki Ueno <ueno@gnu.org>
Tue, 22 Jul 2025 08:10:54 +0000 (17:10 +0900)
committerDaiki Ueno <ueno@gnu.org>
Thu, 24 Jul 2025 05:52:48 +0000 (14:52 +0900)
Signed-off-by: Daiki Ueno <ueno@gnu.org>
lib/tls-sig.c
lib/tls13/session_ticket.c
tests/pkcs11/pkcs11-chainverify.c
tests/pkcs11/pkcs11-combo.c
tests/pkcs11/pkcs11-get-issuer.c
tests/pkcs11/pkcs11-is-known.c
tests/pkcs11/pkcs11-privkey.c
tests/trustdb-tofu.c

index 9782c71b24fe7abae009d96c9a3d9f42707b5985..6d0dd6810ccdd47be42d361b5d9fb8a0b1fbbc16 100644 (file)
@@ -810,7 +810,7 @@ int _gnutls_handshake_sign_crt_vrfy(gnutls_session_t session,
                return _gnutls_handshake_sign_crt_vrfy12(session, cert, pkey,
                                                         signature);
 
-               /* TLS 1.1 or earlier */
+       /* TLS 1.1 or earlier */
 #ifdef ENABLE_SSL3
        if (ver->id == GNUTLS_SSL3)
                return _gnutls_handshake_sign_crt_vrfy3(session, cert, ver,
index b60822056f197886376dde97c4f789ca2c506cc5..5d472ab4ef4b6dacc312484387fbe524c2e3597a 100644 (file)
@@ -225,7 +225,7 @@ static int generate_session_ticket(gnutls_session_t session,
        if ((ret = gnutls_rnd(GNUTLS_RND_NONCE, &ticket->age_add,
                              sizeof(uint32_t))) < 0)
                return gnutls_assert_val(ret);
-               /* This is merely to produce the same binder value on
+       /* This is merely to produce the same binder value on
         * different endian architectures. */
 #ifdef WORDS_BIGENDIAN
        ticket->age_add = bswap_32(ticket->age_add);
index 977a1a62a52638a123ee8614d0e1400c436213c7..b1cff2e8d60276e8db69949e8b92dca20cb9df43 100644 (file)
@@ -80,7 +80,7 @@ void doit(void)
        if (gnutls_fips140_mode_enabled())
                exit(77);
 
-               /* The overloading of time() seems to work in linux (ELF?)
+       /* The overloading of time() seems to work in linux (ELF?)
         * systems only. Disable it on windows.
         */
 #ifdef _WIN32
index 5be3500b32b5b6298ca853223e57434072bb1628..514db7b0d216dd3bb5dab872cd2a2047bff2c299 100644 (file)
@@ -220,7 +220,7 @@ void doit(void)
        if (gnutls_fips140_mode_enabled())
                exit(77);
 
-               /* The overloading of time() seems to work in linux (ELF?)
+       /* The overloading of time() seems to work in linux (ELF?)
         * systems only. Disable it on windows.
         */
 #ifdef _WIN32
index cc1121da71f56496be4739f56e89e2c05dd6e0a5..4262493550f9a80aef2654936952e4d047fe42f0 100644 (file)
@@ -87,7 +87,7 @@ void doit(void)
        if (gnutls_fips140_mode_enabled())
                exit(77);
 
-               /* The overloading of time() seems to work in linux (ELF?)
+       /* The overloading of time() seems to work in linux (ELF?)
         * systems only. Disable it on windows.
         */
 #ifdef _WIN32
index 082620edbb0a70c15e0a564afcba212e5c08b2c1..7e11b75f802fb936724647bb6a158268c3fc4cc1 100644 (file)
@@ -353,7 +353,7 @@ void doit(void)
        if (gnutls_fips140_mode_enabled())
                exit(77);
 
-               /* The overloading of time() seems to work in linux (ELF?)
+       /* The overloading of time() seems to work in linux (ELF?)
         * systems only. Disable it on windows.
         */
 #ifdef _WIN32
index 4ab7e41ed6149cf93b8dc644d785345c8f0682bb..f3bcf539473178a9de9ead77696b104a795bc9aa 100644 (file)
@@ -126,7 +126,7 @@ void doit(void)
        if (gnutls_fips140_mode_enabled())
                exit(77);
 
-               /* The overloading of time() seems to work in linux (ELF?)
+       /* The overloading of time() seems to work in linux (ELF?)
         * systems only. Disable it on windows.
         */
 #ifdef _WIN32
index 7304bd5c07fc20f69dd11a3168497d6d0335db30..b91d2d8ec657af426bb2675fac7081966ff28ab8 100644 (file)
@@ -158,7 +158,7 @@ void doit(void)
        if (debug)
                success("Commitment verification: passed\n");
 
-               /* Verify access to home dir */
+       /* Verify access to home dir */
 #ifndef _WIN32
        setenv("HOME", getcwd(path, sizeof(path)), 1);