diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-11-12 13:42:01 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-11-12 13:42:01 -0500 |
commit | 4ac5175109b14f8fafca3374ab5ca63968ab2cca (patch) | |
tree | 2d5b009f443942de02807a43d796ae2a4351488a /src/test/test_socks.c | |
parent | a3dafd3f58bb3122b9de919e931c02b5e12373b2 (diff) | |
download | tor-4ac5175109b14f8fafca3374ab5ca63968ab2cca.tar.gz tor-4ac5175109b14f8fafca3374ab5ca63968ab2cca.zip |
Fix wide lines (from 13172)
Diffstat (limited to 'src/test/test_socks.c')
-rw-r--r-- | src/test/test_socks.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/test_socks.c b/src/test/test_socks.c index 98c5be0119..fbb8b25980 100644 --- a/src/test/test_socks.c +++ b/src/test/test_socks.c @@ -432,8 +432,8 @@ test_socks_5_malformed_commands(void *ptr) */ ADD_DATA(buf, "\x05\x01\x00"); ADD_DATA(buf, "\x05\x01\x00\x01\x02\x02\x02\x02\x11\x11"); - tt_int_op(fetch_from_buf_socks(buf, socks, get_options()->TestSocks, 1),OP_EQ, - -1); + tt_int_op(fetch_from_buf_socks(buf, socks, get_options()->TestSocks, 1), + OP_EQ, -1); tt_int_op(5,OP_EQ,socks->socks_version); tt_int_op(10,OP_EQ,socks->replylen); |