From dfdccfcc85870d5106a8a75d3fba5ab8e4c85210 Mon Sep 17 00:00:00 2001 From: Alec Murphy Date: Mon, 4 May 2026 19:23:27 -0400 Subject: [PATCH] Support RS_ATTR_COMPRESSED --- isoc-py3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isoc-py3.py b/isoc-py3.py index 71c38b4..42e7cb5 100755 --- a/isoc-py3.py +++ b/isoc-py3.py @@ -190,7 +190,7 @@ def write_iso_c(self, iso_c_file): # File file.write(b"\x20") if f["filename"][-2:] == ".Z": - file.write(b"\x0c") + file.write(b"\x04") else: file.write(b"\x08") file.write(f["filename"].ljust(CDIR_FILENAME_LEN, "\0").encode("utf-8"))