From: Nick Mathewson Date: Wed, 6 May 2020 21:09:27 +0000 (-0400) Subject: connection_or_finished_flushing(): add a missing "break;" X-Git-Tag: tor-0.4.3.5~11^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b7fcbb28d4c3baae4099b709e8df65fc69a5697a;p=thirdparty%2Ftor.git connection_or_finished_flushing(): add a missing "break;" This one is harmless like the others (so far) --- diff --git a/src/core/or/connection_or.c b/src/core/or/connection_or.c index 76bfbf0b30..5571d90f8f 100644 --- a/src/core/or/connection_or.c +++ b/src/core/or/connection_or.c @@ -731,6 +731,7 @@ connection_or_finished_flushing(or_connection_t *conn) } break; } + break; case OR_CONN_STATE_OPEN: case OR_CONN_STATE_OR_HANDSHAKING_V2: case OR_CONN_STATE_OR_HANDSHAKING_V3: