diff options
Diffstat (limited to 'src/or/proto_socks.c')
-rw-r--r-- | src/or/proto_socks.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/or/proto_socks.c b/src/or/proto_socks.c index 3fb3a131d9..4189c0c662 100644 --- a/src/or/proto_socks.c +++ b/src/or/proto_socks.c @@ -699,9 +699,11 @@ parse_socks_client(const uint8_t *data, size_t datalen, return 1; } - /* shouldn't get here... */ + /* LCOV_EXCL_START */ + /* shouldn't get here if the input state is one we know about... */ tor_assert(0); return -1; + /* LCOV_EXCL_STOP */ } |