From: Yusuf Birader Date: Tue, 29 Aug 2023 22:45:52 +0000 (+0100) Subject: archive/zip: update link to zip specification X-Git-Tag: go1.22rc1~1032 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=6f116508550d434d005ef9bc63fb027c70b5b39a;p=gostls13.git 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 --- 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. //