Skip to content

Commit d054e1b

Browse files
committed
Fix unterminated clang-format off.
We should probably ponder what to do about clang-format. That we disagree on chains of && is a little annoying, but peppering the code with clang-format off seems problematic. Change-Id: I0547e4e41817e8c0b585d5fabe759ef25ed00cf7 Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/42264 Reviewed-by: Adam Langley <[email protected]>
1 parent 1a63507 commit d054e1b

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

ssl/tls_record.cc

+5-3
Original file line numberDiff line numberDiff line change
@@ -447,13 +447,15 @@ static bool tls_seal_scatter_suffix_len(const SSL *ssl, size_t *out_suffix_len,
447447
// TLS 1.3 adds an extra byte for encrypted record type.
448448
extra_in_len = 1;
449449
}
450-
if (type == SSL3_RT_APPLICATION_DATA && // clang-format off
450+
// clang-format off
451+
if (type == SSL3_RT_APPLICATION_DATA &&
451452
in_len > 1 &&
452453
ssl_needs_record_splitting(ssl)) {
453454
// With record splitting enabled, the first byte gets sealed into a separate
454455
// record which is written into the prefix.
455456
in_len -= 1;
456457
}
458+
// clang-format on
457459
return ssl->s3->aead_write_ctx->SuffixLen(out_suffix_len, in_len, extra_in_len);
458460
}
459461

@@ -465,8 +467,8 @@ static bool tls_seal_scatter_suffix_len(const SSL *ssl, size_t *out_suffix_len,
465467
// |tls_seal_scatter_record| implements TLS 1.0 CBC 1/n-1 record splitting and
466468
// may write two records concatenated.
467469
static bool tls_seal_scatter_record(SSL *ssl, uint8_t *out_prefix, uint8_t *out,
468-
uint8_t *out_suffix, uint8_t type,
469-
const uint8_t *in, size_t in_len) {
470+
uint8_t *out_suffix, uint8_t type,
471+
const uint8_t *in, size_t in_len) {
470472
if (type == SSL3_RT_APPLICATION_DATA && in_len > 1 &&
471473
ssl_needs_record_splitting(ssl)) {
472474
assert(ssl->s3->aead_write_ctx->ExplicitNonceLen() == 0);

0 commit comments

Comments
 (0)