From 1647b4036d69f5241529c82d6eb53279259976c1 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Mon, 21 Mar 2011 21:29:01 +1100 Subject: [PATCH] Unused variable. --- AUTHORS | 2 ++ ChangeLog | 3 +++ rzip.c | 2 -- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index 0f2be38..12b923c 100644 --- a/AUTHORS +++ b/AUTHORS @@ -18,3 +18,5 @@ Jari Aalto for documentation and typos and git help Jon Tibble for nasm tests & Solaris support Michael Blumenkrantz for updated autotools Serge Belyshev for encryption help and code +Ulrich Drepper for MD5 implementation +PolarSSL authors for sha512 + aes128 implementation diff --git a/ChangeLog b/ChangeLog index c16a52f..a1de274 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,7 @@ lrzip ChangeLog +MARCH 2011, version 0.600 Con Kolivas +* Massive rewrite + MARCH 2011, version 0.571 Con Kolivas * Only retry mmaping if it's a memory error, otherwise it may give spurious errors. diff --git a/rzip.c b/rzip.c index a8098ce..61440c9 100644 --- a/rzip.c +++ b/rzip.c @@ -205,8 +205,6 @@ static inline void put_u32(rzip_control *control, void *ss, uint32_t s) /* Put a variable length of bytes dependant on how big the chunk is */ static inline void put_vchars(rzip_control *control, void *ss, i64 s, int length) { - int bytes; - s = htole64(s); if (unlikely(write_stream(control, ss, 0, (uchar *)&s, length))) fatal("Failed to put_vchars\n");