diff options
author | Yuri Chornoivan <[email protected]> | 2017-02-20 21:19:50 +0000 |
---|---|---|
committer | Daniel Kahn Gillmor <[email protected]> | 2017-02-21 18:11:46 +0000 |
commit | 24cf0606b43038c7ce5e9c6ccb921895619c04f0 (patch) | |
tree | 4888dfeb4ed52052e71158b948499b12b4b04ec9 /g10/compress.c | |
parent | dirmngr: Add special treatment for the standard hkps pool to ntbtls. (diff) | |
download | gnupg-24cf0606b43038c7ce5e9c6ccb921895619c04f0.tar.gz gnupg-24cf0606b43038c7ce5e9c6ccb921895619c04f0.zip |
Clean up word replication.
--
This fixes extra word repetitions (like "the the" or "is is") in the
code and docs.
Signed-off-by: Daniel Kahn Gillmor <[email protected]>
Diffstat (limited to '')
-rw-r--r-- | g10/compress.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/compress.c b/g10/compress.c index fbc8097d7..a14d107ed 100644 --- a/g10/compress.c +++ b/g10/compress.c @@ -182,7 +182,7 @@ do_uncompress( compress_filter_context_t *zfx, z_stream *zs, nread = iobuf_read( a, zfx->inbuf + n, count ); if( nread == -1 ) nread = 0; n += nread; - /* Algo 1 has no zlib header which requires us to to give + /* Algo 1 has no zlib header which requires us to give * inflate an extra dummy byte to read. To be on the safe * side we allow for up to 4 ff bytes. */ if( nread < count && zfx->algo == 1 && zfx->algo1hack < 4) { |