From: Hugo Landau Date: Thu, 1 Feb 2024 11:02:22 +0000 (+0000) Subject: QUIC QLOG: Fix indentation X-Git-Tag: openssl-3.3.0-alpha1~173 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f26feac7605c5c4f5626b857ab8308fc3c2fada9;p=thirdparty%2Fopenssl.git QUIC QLOG: Fix indentation Reviewed-by: Matt Caswell Reviewed-by: Neil Horman (Merged from https://github.com/openssl/openssl/pull/22037) --- diff --git a/ssl/quic/qlog.c b/ssl/quic/qlog.c index 1d07b6f6295..dc68ffb2392 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);