X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=archival%2Funcompress.c;h=4611790168dc9de568f5361b2d26928f9f7dcb84;hb=bbe514683a43e81cab1d5ccc0436b9aaf984294b;hp=3c78961d579b7a9094c35f241b4e4e8757593649;hpb=e1a0d486e4804eae098571f1a6788394c2ee51ae;p=oweals%2Fbusybox.git diff --git a/archival/uncompress.c b/archival/uncompress.c index 3c78961d5..461179016 100644 --- a/archival/uncompress.c +++ b/archival/uncompress.c @@ -25,7 +25,7 @@ int uncompress_main(int argc, char **argv) int src_fd; int dst_fd; - if (strcmp(compressed_file, "-") == 0) { + if (LONE_DASH(compressed_file)) { src_fd = STDIN_FILENO; flags |= GUNZIP_TO_STDOUT; } else {