From da83da91993f0b939ed80c2f8353b0db50589f8e Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 20 Jul 2011 12:58:26 -0400 Subject: Add a missing break in a switch statement --- src/or/connection.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/or/connection.c b/src/or/connection.c index 3950f90152..38859a9010 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -345,6 +345,7 @@ connection_init(time_t now, connection_t *conn, int type, int socket_family) break; CASE_ANY_LISTENER_TYPE: conn->magic = LISTENER_CONNECTION_MAGIC; + break; default: conn->magic = BASE_CONNECTION_MAGIC; break; -- cgit v1.2.3-54-g00ecf