summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2020-05-06 17:09:27 -0400
committerNick Mathewson <nickm@torproject.org>2020-05-06 17:09:27 -0400
commitb7fcbb28d4c3baae4099b709e8df65fc69a5697a (patch)
tree4c6413ad31cbbc68c8af21937673824a3e5dd6ec
parente8fdba198eaf3c8d2a622bc02831e3533748c3f5 (diff)
downloadtor-b7fcbb28d4c3baae4099b709e8df65fc69a5697a.tar.gz
tor-b7fcbb28d4c3baae4099b709e8df65fc69a5697a.zip
connection_or_finished_flushing(): add a missing "break;"
This one is harmless like the others (so far)
-rw-r--r--src/core/or/connection_or.c1
1 files changed, 1 insertions, 0 deletions
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: