diff options
author | Alexander Færøy <ahf@torproject.org> | 2017-04-27 03:36:02 +0200 |
---|---|---|
committer | Alexander Færøy <ahf@torproject.org> | 2017-04-27 15:51:14 +0200 |
commit | 22e6ad6f269a7672418b97c31d3d3c1e4ee795c7 (patch) | |
tree | 4eaa81f34665dcea65928638ad8a24b778452018 /src/test/fuzz | |
parent | 7bececbd693698e4589fee959fb6b0ed69a9faea (diff) | |
download | tor-22e6ad6f269a7672418b97c31d3d3c1e4ee795c7.tar.gz tor-22e6ad6f269a7672418b97c31d3d3c1e4ee795c7.zip |
Clean up mentions of 'zlib' and rename the mentions to 'compressed'.
This patch cleans up in various places where 'zlib' is mentioned.
Diffstat (limited to 'src/test/fuzz')
-rw-r--r-- | src/test/fuzz/fuzz_http.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/fuzz/fuzz_http.c b/src/test/fuzz/fuzz_http.c index ce52acfb5b..2ffeb60244 100644 --- a/src/test/fuzz/fuzz_http.c +++ b/src/test/fuzz/fuzz_http.c @@ -18,10 +18,10 @@ static void mock_connection_write_to_buf_impl_(const char *string, size_t len, - connection_t *conn, int zlib) + connection_t *conn, int compressed) { log_debug(LD_GENERAL, "%sResponse:\n%u\nConnection: %p\n%s\n", - zlib ? "Compressed " : "", (unsigned)len, conn, string); + compressed ? "Compressed " : "", (unsigned)len, conn, string); } static int |