[stegotorus/master] fixed a typo...

commit f269b6e1b4ab7abfc1c3478aef3ab45de2c22a55 Author: Vinod Yegneswaran <vinod@csl.sri.com> Date: Tue Nov 1 19:23:05 2011 +0000 fixed a typo... git-svn-id: svn+ssh://spartan.csl.sri.com/svn/private/DEFIANCE@113 a58ff0ac-194c-e011-a152-003048836090 --- src/steg/zpack.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/steg/zpack.c b/src/steg/zpack.c index 57cd2b2..63aa412 100644 --- a/src/steg/zpack.c +++ b/src/steg/zpack.c @@ -52,7 +52,7 @@ int def(char *source, int slen, char *dest, int dlen, int level) memcpy (in, source, strm.avail_in); slen = slen - strm.avail_in; - source - source + strm.avail_in; + source = source + strm.avail_in; flush = (slen == 0) ? Z_FINISH : Z_NO_FLUSH; strm.next_in = in;
participants (1)
-
zwol@torproject.org