From: Andreas Gruenbacher Date: Fri, 8 Jan 2010 16:22:18 +0000 (+0100) Subject: base85: encode_85() does not use the decode table X-Git-Tag: v1.6.5.8~5^2^2^2^2^2~1 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=b0bec518aa4a90485c411cebc7260425271af949;p=git.git base85: encode_85() does not use the decode table Signed-off-by: Andreas Gruenbacher Signed-off-by: Junio C Hamano --- diff --git a/base85.c b/base85.c index 7b7654253..f2b9a24d5 100644 --- a/base85.c +++ b/base85.c @@ -84,8 +84,6 @@ int decode_85(char *dst, const char *buffer, int len) void encode_85(char *buf, const unsigned char *data, int bytes) { - prep_base85(); - say("encode 85"); while (bytes) { unsigned acc = 0;