aboutsummaryrefslogtreecommitdiff
path: root/archival/gunzip.c
diff options
context:
space:
mode:
Diffstat (limited to 'archival/gunzip.c')
-rw-r--r--archival/gunzip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/gunzip.c b/archival/gunzip.c
index 6f5e63d4b..c39814de0 100644
--- a/archival/gunzip.c
+++ b/archival/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 {