From 13f790676b17b63b7701a9a63313882f57ecf92a Mon Sep 17 00:00:00 2001 From: Christos Zoulas Date: Wed, 27 Oct 1993 21:00:54 +0000 Subject: [PATCH] *** empty log message *** --- src/ascmagic.c | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/src/ascmagic.c b/src/ascmagic.c index 322eb90b..9821a46b 100644 --- a/src/ascmagic.c +++ b/src/ascmagic.c @@ -36,7 +36,7 @@ #ifndef lint static char *moduleid = - "@(#)$Id: ascmagic.c,v 1.15 1993/09/16 21:06:33 christos Exp $"; + "@(#)$Id: ascmagic.c,v 1.16 1993/10/27 21:00:54 christos Exp $"; #endif /* lint */ /* an optimisation over plain strcmp() */ @@ -103,23 +103,6 @@ int nbytes; /* size actually read */ return 1; } - if ((i = is_compress(buf, &isblock)) != 0) { - if (zflag) { - unsigned char *newbuf; - int newsize; - - if ((newsize = uncompress(buf, &newbuf, nbytes)) != 0) { - tryit(newbuf, newsize); - free(newbuf); - } - printf(" (%scompressed data - %d bits)", - isblock ? "block " : "", i); - } - else printf("%scompressed data - %d bits", - isblock ? "block " : "", i); - return 1; - } - for (i = 0; i < nbytes; i++) { if (!isascii(*(buf+i))) return 0; /* not all ascii */ -- 2.40.0