From 81121d7d445af9b9c8850a5fcc99e6375fba9336 Mon Sep 17 00:00:00 2001 From: Joseph Carter Date: Sun, 2 Jan 2000 05:10:08 +0000 Subject: [PATCH] Marcus' mdfour fix... Perhaps this should be sent to the rsync people? --- common/mdfour.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/mdfour.c b/common/mdfour.c index ca0486a..aa1b5d8 100644 --- a/common/mdfour.c +++ b/common/mdfour.c @@ -171,7 +171,7 @@ void mdfour_update(struct mdfour *md, unsigned char *in, int n) m->totalN += 64; } - if (n) mdfour_tail(in, n); + mdfour_tail(in, n); }