diff --git a/src/common/compress.c b/src/common/compress.c index ec9ded6f7f..4c10a2b61e 100644 --- a/src/common/compress.c +++ b/src/common/compress.c @@ -215,12 +215,11 @@ tor_compress(char **out, size_t *out_len, 1, LOG_WARN); } -/** Given zero or more zlib-compressed or gzip-compressed strings of - * total length - * in_len bytes at in, uncompress them into a newly allocated - * buffer, using the method described in method. Store the uncompressed - * string in *out, and its length in *out_len. Return 0 on - * success, -1 on failure. +/** Given zero or more compressed strings of total length in_len bytes + * at in, uncompress them into a newly allocated buffer, using the + * method described in method. Store the uncompressed string in + * *out, and its length in *out_len. Return 0 on success, -1 on + * failure. * * If complete_only is true, we consider a truncated input as a * failure; otherwise we decompress as much as we can. Warn about truncated