summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2006-02-12 23:34:03 +0000
committerRoger Dingledine <arma@torproject.org>2006-02-12 23:34:03 +0000
commit53c54b75c9e3ba373cc43633eacc290f175fbb14 (patch)
tree3c479b53336606c3b57068611dd610a51c171e3e /src/common
parent97571a1cb4049ce1c955533007d3299ab2f17b8c (diff)
downloadtor-53c54b75c9e3ba373cc43633eacc290f175fbb14.tar.gz
tor-53c54b75c9e3ba373cc43633eacc290f175fbb14.zip
Correct a function comment. Nick: is this right?
svn:r5989
Diffstat (limited to 'src/common')
-rw-r--r--src/common/torgzip.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/torgzip.c b/src/common/torgzip.c
index ecfbf2ba78..f9cd247731 100644
--- a/src/common/torgzip.c
+++ b/src/common/torgzip.c
@@ -146,7 +146,8 @@ tor_gzip_compress(char **out, size_t *out_len,
return -1;
}
-/** Given or more zlib-compressed or gzip-compressed strings of total length
+/** Given zero or more zlib-compressed or gzip-compressed strings of
+ * total length
* <b>in_len</b> bytes at <b>in</b>, uncompress them into a newly allocated
* buffer, using the method described in <b>method</b>. Store the uncompressed
* string in *<b>out</b>, and its length in *<b>out_len</b>. Return 0 on