1
0
鏡像自 https://git.tukaani.org/xz.git synced 2025-07-03 19:06:37 +00:00

xz: Translate a Windows-specific string

Originally I thought that native Windows builds wouldn't be translated
but nowadays at least MSYS2 ships such binaries.
This commit is contained in:
Lasse Collin 2025-01-04 13:44:12 +02:00
父節點 00eb6073c0
當前提交 a7313c01d9
沒有發現已知的金鑰在資料庫的簽署中
GPG 金鑰 ID: 38EE757D69184620

查看文件

@ -895,7 +895,7 @@ io_open_dest_real(file_pair *pair)
// With fstat()/_fstat64() it works. // With fstat()/_fstat64() it works.
else if (pair->dest_fd != STDOUT_FILENO else if (pair->dest_fd != STDOUT_FILENO
&& !S_ISREG(pair->dest_st.st_mode)) { && !S_ISREG(pair->dest_st.st_mode)) {
message_error("%s: Destination is not a regular file", message_error(_("%s: Destination is not a regular file"),
tuklib_mask_nonprint(pair->dest_name)); tuklib_mask_nonprint(pair->dest_name));
// dest_fd needs to be reset to -1 to keep io_close() working. // dest_fd needs to be reset to -1 to keep io_close() working.