diff options
| author | Tim Kientzle <kientzle@FreeBSD.org> | 2008-05-02 05:14:58 +0000 |
|---|---|---|
| committer | Tim Kientzle <kientzle@FreeBSD.org> | 2008-05-02 05:14:58 +0000 |
| commit | a0a88a1e98dad4a9c00c4635c939e3ea36b12ce5 (patch) | |
| tree | dab39e01b8184be12bcc5e2b43dde3b9c0c90256 | |
| parent | 53df73db45f9669f457e9a962789b3bd13ce00e2 (diff) | |
Notes
| -rw-r--r-- | usr.bin/tar/write.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/tar/write.c b/usr.bin/tar/write.c index e1103ddc5915..12a36a3f937b 100644 --- a/usr.bin/tar/write.c +++ b/usr.bin/tar/write.c @@ -1534,7 +1534,7 @@ test_for_append(struct bsdtar *bsdtar) { struct stat s; - if (*bsdtar->argv == NULL) + if (*bsdtar->argv == NULL && bsdtar->names_from_file == NULL) bsdtar_errc(bsdtar, 1, 0, "no files or directories specified"); if (bsdtar->filename == NULL) bsdtar_errc(bsdtar, 1, 0, "Cannot append to stdout."); |
