summaryrefslogtreecommitdiff
path: root/archival
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2000-07-12 15:38:49 +0000
committerMatt Kraai <kraai@debian.org>2000-07-12 15:38:49 +0000
commite58771e73c0d8589a458ede4088f5ba70eff917b (patch)
tree46d579ac4ec39719ba3b8d18bbc1c359cc9939c5 /archival
parente714bce003a1b0e2c49e58fe14af86abc8b31f23 (diff)
downloadbusybox-w32-e58771e73c0d8589a458ede4088f5ba70eff917b.tar.gz
busybox-w32-e58771e73c0d8589a458ede4088f5ba70eff917b.tar.bz2
busybox-w32-e58771e73c0d8589a458ede4088f5ba70eff917b.zip
Use global applet_name instead of local versions.
Diffstat (limited to 'archival')
-rw-r--r--archival/gunzip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/gunzip.c b/archival/gunzip.c
index d6382aed0..e6b8202c8 100644
--- a/archival/gunzip.c
+++ b/archival/gunzip.c
@@ -592,7 +592,7 @@ int gunzip_main(int argc, char **argv)
592 char ifname[MAX_PATH_LEN + 1]; /* input file name */ 592 char ifname[MAX_PATH_LEN + 1]; /* input file name */
593 char ofname[MAX_PATH_LEN + 1]; /* output file name */ 593 char ofname[MAX_PATH_LEN + 1]; /* output file name */
594 594
595 if (strcmp(*argv, "zcat") == 0) { 595 if (strcmp(applet_name, "zcat") == 0) {
596 to_stdout = 1; 596 to_stdout = 1;
597 if (argc == 1) { 597 if (argc == 1) {
598 fromstdin = 1; 598 fromstdin = 1;