Vendor in latest containers/storage

Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
Daniel J Walsh
2023-02-23 10:06:32 -05:00
parent c4cfba5572
commit 9d93486d21
22 changed files with 132 additions and 61 deletions

View File

@@ -519,7 +519,7 @@ type Store interface {
GarbageCollect() error
}
// AdditionalLayer reprents a layer that is contained in the additional layer store
// AdditionalLayer represents a layer that is contained in the additional layer store
// This API is experimental and can be changed without bumping the major version number.
type AdditionalLayer interface {
// PutAs creates layer based on this handler, using diff contents from the additional
@@ -820,7 +820,7 @@ func (s *store) GIDMap() []idtools.IDMap {
return copyIDMap(s.gidMap)
}
// This must only be called when constructing store; it writes to fields that are assumed to be constant after constrution.
// This must only be called when constructing store; it writes to fields that are assumed to be constant after construction.
func (s *store) load() error {
var driver drivers.Driver
if err := func() error { // A scope for defer