From 0b0346866e5e9819cd4c07d049222059425599d7 Mon Sep 17 00:00:00 2001 From: Benjamin Kaduk Date: Mon, 4 May 2020 11:50:25 -0700 Subject: QUIC: Fix up whitespace nits introduced by PR #11416 Expand a couple literal tabs, and de-indent the body of a function. Reviewed-by: Shane Lontis (Merged from https://github.com/openssl/openssl/pull/11728) (cherry picked from commit 35774d5594af9beeb73792742b7ed901d202be70) --- ssl/ssl_lib.c | 10 +++++----- ssl/ssl_local.h | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ssl/ssl_lib.c b/ssl/ssl_lib.c index ec35f1f22f..4ae2e7ecc0 100644 --- a/ssl/ssl_lib.c +++ b/ssl/ssl_lib.c @@ -2234,11 +2234,11 @@ int SSL_renegotiate_pending(const SSL *s) int SSL_new_session_ticket(SSL *s) { - if (SSL_in_init(s) || SSL_IS_FIRST_HANDSHAKE(s) || !s->server - || !SSL_IS_TLS13(s)) - return 0; - s->ext.extra_tickets_expected++; - return 1; + if (SSL_in_init(s) || SSL_IS_FIRST_HANDSHAKE(s) || !s->server + || !SSL_IS_TLS13(s)) + return 0; + s->ext.extra_tickets_expected++; + return 1; } long SSL_ctrl(SSL *s, int cmd, long larg, void *parg) diff --git a/ssl/ssl_local.h b/ssl/ssl_local.h index 2ac1fa0059..49402b16c3 100644 --- a/ssl/ssl_local.h +++ b/ssl/ssl_local.h @@ -1320,8 +1320,8 @@ struct ssl_st { /* RFC4507 session ticket expected to be received or sent */ int ticket_expected; - /* TLS 1.3 tickets requested by the application. */ - int extra_tickets_expected; + /* TLS 1.3 tickets requested by the application. */ + int extra_tickets_expected; # ifndef OPENSSL_NO_EC size_t ecpointformats_len; /* our list */ -- 2.35.3