diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2021-05-31 09:56:56 +0200 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2021-05-31 09:56:56 +0200 |
commit | abb57e5cf43d004b8c6edd4287a1e5eae5261b70 (patch) | |
tree | 95b3e0e51ab50e425a1873e4e7f68345dc21e1f9 /vendor/github.com/Microsoft | |
parent | 6f28b151b659d2c0a0173f524daf5e128bf526ed (diff) | |
download | podman-abb57e5cf43d004b8c6edd4287a1e5eae5261b70.tar.gz podman-abb57e5cf43d004b8c6edd4287a1e5eae5261b70.tar.bz2 podman-abb57e5cf43d004b8c6edd4287a1e5eae5261b70.zip |
vendor containers/storage@v1.31.3
* store: ReloadIfChanged propagates errors from Modified()
* store: load additional image stores once
* store: fix graphLock reload
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'vendor/github.com/Microsoft')
-rw-r--r-- | vendor/github.com/Microsoft/go-winio/README.md | 2 | ||||
-rw-r--r-- | vendor/github.com/Microsoft/go-winio/privilege.go | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/vendor/github.com/Microsoft/go-winio/README.md b/vendor/github.com/Microsoft/go-winio/README.md index 568001057..60c93fe50 100644 --- a/vendor/github.com/Microsoft/go-winio/README.md +++ b/vendor/github.com/Microsoft/go-winio/README.md @@ -1,4 +1,4 @@ -# go-winio +# go-winio [![Build Status](https://github.com/microsoft/go-winio/actions/workflows/ci.yml/badge.svg)](https://github.com/microsoft/go-winio/actions/workflows/ci.yml) This repository contains utilities for efficiently performing Win32 IO operations in Go. Currently, this is focused on accessing named pipes and other file handles, and diff --git a/vendor/github.com/Microsoft/go-winio/privilege.go b/vendor/github.com/Microsoft/go-winio/privilege.go index 9c83d36fe..c3dd7c217 100644 --- a/vendor/github.com/Microsoft/go-winio/privilege.go +++ b/vendor/github.com/Microsoft/go-winio/privilege.go @@ -28,8 +28,9 @@ const ( ERROR_NOT_ALL_ASSIGNED syscall.Errno = 1300 - SeBackupPrivilege = "SeBackupPrivilege" - SeRestorePrivilege = "SeRestorePrivilege" + SeBackupPrivilege = "SeBackupPrivilege" + SeRestorePrivilege = "SeRestorePrivilege" + SeSecurityPrivilege = "SeSecurityPrivilege" ) const ( |