mirror of
https://github.com/containers/podman.git
synced 2025-05-23 01:57:56 +08:00
vendor c/common
Update the recent events-log changes to fix the build error. [NO NEW TESTS NEEDED] since there's no functional change. Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
This commit is contained in:
2
vendor/github.com/containers/common/pkg/parse/parse.go
generated
vendored
2
vendor/github.com/containers/common/pkg/parse/parse.go
generated
vendored
@ -141,7 +141,7 @@ func Device(device string) (src, dest, permissions string, err error) {
|
||||
// isValidDeviceMode checks if the mode for device is valid or not.
|
||||
// isValid mode is a composition of r (read), w (write), and m (mknod).
|
||||
func isValidDeviceMode(mode string) bool {
|
||||
var legalDeviceMode = map[rune]bool{
|
||||
legalDeviceMode := map[rune]bool{
|
||||
'r': true,
|
||||
'w': true,
|
||||
'm': true,
|
||||
|
Reference in New Issue
Block a user