From cef75323d54946724df6703f959ba6fb23512085 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Sat, 2 Jun 2018 17:27:43 +0300 Subject: [PATCH] USTAR can not handle >8GiB files --- src/cypherpunks.ru/nncp/cmd/nncp-bundle/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cypherpunks.ru/nncp/cmd/nncp-bundle/main.go b/src/cypherpunks.ru/nncp/cmd/nncp-bundle/main.go index 3bd9380..f6e0d46 100644 --- a/src/cypherpunks.ru/nncp/cmd/nncp-bundle/main.go +++ b/src/cypherpunks.ru/nncp/cmd/nncp-bundle/main.go @@ -120,6 +120,7 @@ func main() { continue } if err = tarWr.WriteHeader(&tar.Header{ + Format: tar.FormatPAX, Name: strings.Join([]string{ nncp.NNCPBundlePrefix, nodeId.String(), -- 2.48.1