Joerg Sonnenberger
Joerg Sonnenberger
Most implementations of DELETE I have seen just confirm the operation, they don't return data. Therefore it is a more useful default.
The second chunk is not really going to work...
`bsdtar` is using `isprint(3)` to decide what characters are safe to print to the terminal. All others are escaped. So unless your locale is an actual matching single-byte locale and...
Sure, the binary filename is passed through as it doesn't know what to make of it. Remember, nothing on POSIX says that filenames are UTF-8 and the same applies to...
If `archive_check_magic` fails, it's already a programming error in the caller. The entire point of that function and its calls is to sanity check the archive state.
`archive_check_magic` is a macro that will return with ARCHIVE_FATAL on error conditions. As I said, any code path that triggers this is already UB and the only point of the...
IMO the only good aspect of the Lichess coordinate placement is the compactness. In every other regard, especially clarity and readability, it is (significantly) inferior.
Coordinates are clearly a second class citizen on that board. They are available, but not really meant to be used. Consider for a moment using a projector to show a...
libarchive and bsdtar preserve the path as given on the command line. Compare: ``` cd / bsdtar -cf test.zip --format.zip etc/passwd ``` and ``` cd / bsdtar -cf test.zip --format.zip...
You can just patch up the entry you get from the archive_read_disk's meta data entry.