From 6f116508550d434d005ef9bc63fb027c70b5b39a Mon Sep 17 00:00:00 2001 From: Yusuf Birader Date: Tue, 29 Aug 2023 23:45:52 +0100 Subject: [PATCH] archive/zip: update link to zip specification Change-Id: Iad902ec2a13b0c5c594c60ecac0b40f641574a1e Reviewed-on: https://go-review.googlesource.com/c/go/+/524275 Reviewed-by: Ian Lance Taylor TryBot-Result: Gopher Robot Reviewed-by: Dmitri Shuralyov Reviewed-by: Joseph Tsai Run-TryBot: Joseph Tsai LUCI-TryBot-Result: Go LUCI Auto-Submit: Ian Lance Taylor --- src/archive/zip/struct.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/archive/zip/struct.go b/src/archive/zip/struct.go index 9a8e67cc69..bdcc45c729 100644 --- a/src/archive/zip/struct.go +++ b/src/archive/zip/struct.go @@ -17,7 +17,7 @@ for normal archives both fields will be the same. For files requiring the ZIP64 format the 32 bit fields will be 0xffffffff and the 64 bit fields must be used instead. -[ZIP specification]: https://www.pkware.com/appnote +[ZIP specification]: https://support.pkware.com/pkzip/appnote */ package zip @@ -82,7 +82,7 @@ const ( // FileHeader describes a file within a ZIP file. // See the [ZIP specification] for details. // -// [ZIP specification]: https://www.pkware.com/appnote +// [ZIP specification]: https://support.pkware.com/pkzip/appnote type FileHeader struct { // Name is the name of the file. // -- 2.50.0