From aa2fe29bc559dfbf17805267f10f7bf0b112750f Mon Sep 17 00:00:00 2001 From: Stelian Pop Date: Fri, 18 Apr 2003 07:47:57 +0000 Subject: [PATCH] Small patch for LZO functionality. --- dump/tape.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dump/tape.c b/dump/tape.c index d80e49a..1990be9 100644 --- a/dump/tape.c +++ b/dump/tape.c @@ -37,7 +37,7 @@ #ifndef lint static const char rcsid[] = - "$Id: tape.c,v 1.76 2003/04/09 10:42:57 stelian Exp $"; + "$Id: tape.c,v 1.77 2003/04/18 07:47:57 stelian Exp $"; #endif /* not lint */ #include @@ -1133,10 +1133,10 @@ doslave(int cmd, if (compressed) { int bsiz = sizeof(struct tapebuf) + writesize; /* Add extra space to deal with compression enlarging the buffer */ - if (TP_BSIZE > writesize/64 + 19) + if (TP_BSIZE > writesize/16 + 67) bsiz += TP_BSIZE; else - bsiz += writesize/64 + 19; + bsiz += writesize/16 + 67; comp_buf = malloc(bsiz); if (comp_buf == NULL) quit("couldn't allocate a compress buffer.\n"); -- 2.39.2