summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-08-30 17:42:04 +0100
committerHugo Landau <hlandau@openssl.org>2023-09-01 14:02:54 +0100
commit016a80dcf441189ac6d84533f1951506116a3b98 (patch)
treeabc74e3c217f25abcd2edd9c7cae729e9adbf3d9 /ssl
parent7b1ca59995a0d0ad933b5d475face79b8ec99828 (diff)
Minor fixes
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21905)
Diffstat (limited to 'ssl')
-rw-r--r--ssl/quic/quic_impl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/quic/quic_impl.c b/ssl/quic/quic_impl.c
index ec18a9f6c8..a9945fec43 100644
--- a/ssl/quic/quic_impl.c
+++ b/ssl/quic/quic_impl.c
@@ -3343,7 +3343,7 @@ int ossl_quic_get_conn_close_info(SSL *ssl,
info->reason_len = tc->reason_len;
info->flags = 0;
if (!tc->remote)
- info->flags |= SSL_CONN_CLOSE_FLAG_LOCAL;
+ info->flags |= SSL_CONN_CLOSE_FLAG_LOCAL;
if (!tc->app)
info->flags |= SSL_CONN_CLOSE_FLAG_TRANSPORT;
return 1;