diff options
author | Andreas Stieger <astieger@suse.com> | 2017-05-28 23:49:31 +0200 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-09-11 17:47:04 -0400 |
commit | 6cd5a80275614105ccf8794465b6ba5c0c5e8f3f (patch) | |
tree | 6522e4bd90ea9926ac9bd526b24e465272c17be8 /src/or/dns.c | |
parent | b81a2e8f46bf5951a9dd0890f7e1420cf3a6a57c (diff) | |
download | tor-6cd5a80275614105ccf8794465b6ba5c0c5e8f3f.tar.gz tor-6cd5a80275614105ccf8794465b6ba5c0c5e8f3f.zip |
Fix GCC 7 -Wimplicit-fallthrough warnings
Add magic comments recognized by default -Wimplicit-fallthrough=3
or break, as required.
Diffstat (limited to 'src/or/dns.c')
-rw-r--r-- | src/or/dns.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/dns.c b/src/or/dns.c index e007a402f4..0ad4c0f505 100644 --- a/src/or/dns.c +++ b/src/or/dns.c @@ -522,6 +522,7 @@ send_resolved_cell,(edge_connection_t *conn, uint8_t answer_type, answer_type = RESOLVED_TYPE_ERROR; /* fall through. */ } + /* Falls through. */ case RESOLVED_TYPE_ERROR_TRANSIENT: case RESOLVED_TYPE_ERROR: { |