From 2eb31f546047ea1987beffa412dd6528ad17b67b Mon Sep 17 00:00:00 2001 From: Christos Zoulas Date: Fri, 21 Jan 1994 01:38:24 +0000 Subject: [PATCH] *** empty log message *** --- src/compress.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/compress.c b/src/compress.c index 4eb499b5..a665306a 100644 --- a/src/compress.c +++ b/src/compress.c @@ -4,7 +4,7 @@ * information if recognized * uncompress(method, old, n, newch) - uncompress old into new, * using method, return sizeof new - * $Id: compress.c,v 1.7 1993/10/27 20:59:05 christos Exp $ + * $Id: compress.c,v 1.8 1994/01/21 01:38:24 christos Exp $ */ #include #include @@ -22,10 +22,11 @@ static struct { } compr[] = { { "\037\235", 2, { "uncompress", "-c", NULL }, 0 }, { "\037\213", 2, { "gzip", "-dq", NULL }, 1 }, -#if 0 - /* XXX pcat does not work, cause I don't know how to make it read stdin */ - { "\037\036", 2, { "pcat", NULL, NULL }, 0 }, -#endif + /* + * XXX pcat does not work, cause I don't know how to make it read stdin, + * so we use gzip + */ + { "\037\036", 2, { "gzip", "-dq", NULL }, 0 }, }; static int ncompr = sizeof(compr) / sizeof(compr[0]); -- 2.50.1