]> git.ipfire.org Git - thirdparty/libarchive.git/commit
Fix tar -w on Windows (#2219)
authorDustin L. Howett <dustin@howett.net>
Tue, 4 Jun 2024 03:27:29 +0000 (22:27 -0500)
committerGitHub <noreply@github.com>
Tue, 4 Jun 2024 03:27:29 +0000 (20:27 -0700)
commit6c467b7753fa8bd2c22dda280802d057ac06d9cc
tree1e7641fd057f70d1250619c2625b697b2981bfb7
parentf3a5248bb533ce9c08624abbda11d611aea7bb4b
Fix tar -w on Windows (#2219)

The tar utility reads from stderr to receive user input even when stdin
is a pipe. That is unfortunately unsupported on Windows.

The nearest equivalent is to reopen and read from the console input
handle.

Closes #2215
tar/util.c