summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2024-02-01 11:02:22 +0000
committerHugo Landau <hlandau@openssl.org>2024-02-02 11:50:30 +0000
commitf26feac7605c5c4f5626b857ab8308fc3c2fada9 (patch)
treef5d19e0f2bd2333b7c096997773759de40f266ee /ssl
parentd1fe5738d393ace037c1f5f674125ad06a7e576d (diff)
QUIC QLOG: Fix indentation
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Neil Horman <nhorman@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22037)
Diffstat (limited to 'ssl')
-rw-r--r--ssl/quic/qlog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssl/quic/qlog.c b/ssl/quic/qlog.c
index 1d07b6f629..dc68ffb239 100644
--- a/ssl/quic/qlog.c
+++ b/ssl/quic/qlog.c
@@ -341,8 +341,8 @@ static void qlog_event_seq_header(QLOG *qlog)
}
ossl_json_key(&qlog->json, "type");
- ossl_json_str(&qlog->json, qlog->info.is_server
- ? "server" : "client");
+ ossl_json_str(&qlog->json,
+ qlog->info.is_server ? "server" : "client");
ossl_json_key(&qlog->json, "name");
ossl_json_str(&qlog->json, p);