summaryrefslogtreecommitdiffstats
path: root/ssl/quic/quic_impl.c
diff options
context:
space:
mode:
Diffstat (limited to 'ssl/quic/quic_impl.c')
-rw-r--r--ssl/quic/quic_impl.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/ssl/quic/quic_impl.c b/ssl/quic/quic_impl.c
index 9249c64cff..97192415c0 100644
--- a/ssl/quic/quic_impl.c
+++ b/ssl/quic/quic_impl.c
@@ -3515,10 +3515,8 @@ static int qctx_should_autotick(QCTX *ctx)
int event_handling_mode;
QUIC_OBJ *obj = ctx->obj;
- for (; (event_handling_mode = obj->event_handling_mode)
- == SSL_VALUE_EVENT_HANDLING_MODE_INHERIT
- && obj->parent_obj != NULL;
- obj = obj->parent_obj);
+ for (; (event_handling_mode = obj->event_handling_mode) == SSL_VALUE_EVENT_HANDLING_MODE_INHERIT
+ && obj->parent_obj != NULL; obj = obj->parent_obj);
return event_handling_mode != SSL_VALUE_EVENT_HANDLING_MODE_EXPLICIT;
}