Make - read compressed data from stdin (thanks to Marius Groeger).
authorMatt Kraai <kraai@debian.org>
Tue, 22 May 2001 14:23:02 +0000 (14:23 -0000)
committerMatt Kraai <kraai@debian.org>
Tue, 22 May 2001 14:23:02 +0000 (14:23 -0000)
archival/gunzip.c
gunzip.c

index 6f5e63d..c39814d 100644 (file)
@@ -110,7 +110,7 @@ extern int gunzip_main(int argc, char **argv)
        }
 
        /* Set input filename and number */
-       if (argv[optind] == NULL) {
+       if (argv[optind] == NULL || strcmp(argv[optind], "-") == 0) {
                flags |= gunzip_to_stdout;
                in_file = stdin;
        } else {
index 6f5e63d..c39814d 100644 (file)
--- a/gunzip.c
+++ b/gunzip.c
@@ -110,7 +110,7 @@ extern int gunzip_main(int argc, char **argv)
        }
 
        /* Set input filename and number */
-       if (argv[optind] == NULL) {
+       if (argv[optind] == NULL || strcmp(argv[optind], "-") == 0) {
                flags |= gunzip_to_stdout;
                in_file = stdin;
        } else {