aboutsummaryrefslogtreecommitdiff
path: root/archival/libarchive/unxz/xz_dec_lzma2.c (unfollow)
Commit message (Collapse)AuthorFilesLines
20 hourstls: whitespace fixesRon Yorston5-8/+8
No functional changes.
20 hourstls: fix schannel handshake on older WindowsRFL8901-1/+1
38 hoursstty: fix build for Windows XPRon Yorston1-0/+10
The ioctl() to get the size of the terminal windows used functions which weren't available on Windows XP. Load these dynamically to avoid failure. Adds 160 bytes.
39 hourstls: add Schannel implementationrfl8906-14/+635
Not enabled by default. When enabled without TLS 1.3 support, saves 16784-18776 bytes. (GitHub PR #510)
10 dayssed: ensure temporary file is deleted on errorRon Yorston1-1/+6
It wasn't possible to delete the temporary output file in case of error on Windows because it was open. Close the file before trying to unlink it. Adds 16 bytes. (GitHub issue #509)
10 daysCall BCryptDestroyHash before freeing memory handleRFL8902-0/+2
2025-07-25stty: enable a minimal Windows implementationRon Yorston11-31/+224
Implement a minimal stty applet for Windows. - Display and set terminal rows and columns - Enable/disable raw/cooked mode - Enable/disable echo mode - Implement 'stty sane' to reset raw/cooked/echo Adds 2120-2304 bytes. (GitHub issue #58)