Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/usr.bin/gzip - properly parse --fast/--best/-1..-9 again. n...
details: https://anonhg.NetBSD.org/src/rev/88de7c710132
branches: trunk
changeset: 566040:88de7c710132
user: mrg <mrg%NetBSD.org@localhost>
date: Mon Apr 26 03:01:55 2004 +0000
description:
- properly parse --fast/--best/-1..-9 again. noted by taca@.
- minor clean up.
diffstat:
usr.bin/gzip/gzip.c | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
diffs (65 lines):
diff -r bc43dc5fdec7 -r 88de7c710132 usr.bin/gzip/gzip.c
--- a/usr.bin/gzip/gzip.c Mon Apr 26 01:53:59 2004 +0000
+++ b/usr.bin/gzip/gzip.c Mon Apr 26 03:01:55 2004 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: gzip.c,v 1.37 2004/04/25 16:20:33 mrg Exp $ */
+/* $NetBSD: gzip.c,v 1.38 2004/04/26 03:01:55 mrg Exp $ */
/*
* Copyright (c) 1997, 1998, 2003, 2004 Matthew R. Green
@@ -32,7 +32,7 @@
#ifndef lint
__COPYRIGHT("@(#) Copyright (c) 1997, 1998, 2003, 2004 Matthew R. Green\n\
All rights reserved.\n");
-__RCSID("$NetBSD: gzip.c,v 1.37 2004/04/25 16:20:33 mrg Exp $");
+__RCSID("$NetBSD: gzip.c,v 1.38 2004/04/26 03:01:55 mrg Exp $");
#endif /* not lint */
/*
@@ -249,7 +249,7 @@
case '1': case '2': case '3':
case '4': case '5': case '6':
case '7': case '8': case '9':
- numflag = ch;
+ numflag = ch - '0';
break;
#ifndef SMALL
case 'f':
@@ -448,8 +448,8 @@
memset(&z, 0, sizeof z);
z.next_out = outbuf;
z.avail_out = sizeof outbuf;
- z.zalloc = NULL;
- z.zfree = NULL;
+ z.zalloc = Z_NULL;
+ z.zfree = Z_NULL;
z.opaque = 0;
error = deflateInit2(&z, numflag, Z_DEFLATED,
@@ -483,7 +483,7 @@
error = deflate(&z, Z_NO_FLUSH);
if (error != Z_OK && error != Z_STREAM_END)
- maybe_errx(1, "deflate failed2 (%d)", error);
+ maybe_errx(1, "deflate failed");
}
/* clean up */
@@ -492,7 +492,7 @@
error = deflate(&z, Z_FINISH);
if (error != Z_OK && error != Z_STREAM_END)
- maybe_errx(1, "deflate failed1 (%d)", error);
+ maybe_errx(1, "deflate failed");
len = sizeof outbuf - z.avail_out;
@@ -726,7 +726,7 @@
break;
}
if (error < 0) {
- maybe_warnx("decompression error (%d)\n", error);
+ maybe_warnx("decompression error\n");
out_tot = -1;
goto stop;
}
Home |
Main Index |
Thread Index |
Old Index