diff options
author | Nick Mathewson <nickm@torproject.org> | 2011-07-20 12:58:26 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-07-20 12:58:26 -0400 |
commit | da83da91993f0b939ed80c2f8353b0db50589f8e (patch) | |
tree | 7eb84de05251e111c3ba15525f5503a09bb6cee1 /src | |
parent | 0118d98b1342b5e135b5a25f2809af627b8602f9 (diff) | |
download | tor-da83da91993f0b939ed80c2f8353b0db50589f8e.tar.gz tor-da83da91993f0b939ed80c2f8353b0db50589f8e.zip |
Add a missing break in a switch statement
Diffstat (limited to 'src')
-rw-r--r-- | src/or/connection.c | 1 |
1 files changed, 1 insertions, 0 deletions
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; |