From b826b176d28b659ae8694ce179d9d1438f8a6879 Mon Sep 17 00:00:00 2001 From: Craig Allen Date: Thu, 13 Oct 2016 12:22:42 +0100 Subject: [PATCH] mistake in passing get-timestamp rather than sys-type to write-central-directory It's worth noting that this hasn't caused me an issue, I came across it as I wanted to see what sys-type actually did. I couldn't say what the affect of this change would be and don't have a use case for it, it just looks wrong! --- racket/collects/file/zip.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/racket/collects/file/zip.rkt b/racket/collects/file/zip.rkt index e3ac7de0e8..38b885592c 100644 --- a/racket/collects/file/zip.rkt +++ b/racket/collects/file/zip.rkt @@ -289,7 +289,7 @@ files))]) (when (zip-verbose) (eprintf "zip: writing headers...\n")) - (write-central-directory headers get-timestamp)) + (write-central-directory headers sys-type)) (when (zip-verbose) (eprintf "zip: done.\n"))))