aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--archival/tar.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/archival/tar.c b/archival/tar.c
index 88a815de6..e6c134e3b 100644
--- a/archival/tar.c
+++ b/archival/tar.c
@@ -694,7 +694,9 @@ int tar_main(int argc, char **argv)
694 } 694 }
695 } 695 }
696 696
697 if (*argv[optind] == '-') { 697 /* Check if we are reading from stdin */
698 if ((argv[optind]) && (*argv[optind] == '-')) {
699 /* Default is to read from stdin, so just skip to next arg */
698 optind++; 700 optind++;
699 } 701 }
700 702