diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-01-07 05:34:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-07 05:34:08 -0500 |
commit | 68c9e02df72cbdfb2d239fb1de020bc1e0dabad3 (patch) | |
tree | 61fab0a1c2faed54c9432d4947baf54d34ce6c9f /vendor | |
parent | 355e387692b15b151d65e58b580581382eee7f62 (diff) | |
parent | bfbd915d625802ef2187e14d00acf13ea27502d7 (diff) | |
download | podman-68c9e02df72cbdfb2d239fb1de020bc1e0dabad3.tar.gz podman-68c9e02df72cbdfb2d239fb1de020bc1e0dabad3.tar.bz2 podman-68c9e02df72cbdfb2d239fb1de020bc1e0dabad3.zip |
Merge pull request #8884 from containers/dependabot/go_modules/github.com/google/uuid-1.1.4
Bump github.com/google/uuid from 1.1.3 to 1.1.4
Diffstat (limited to 'vendor')
-rw-r--r-- | vendor/github.com/google/uuid/uuid.go | 6 | ||||
-rw-r--r-- | vendor/modules.txt | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/vendor/github.com/google/uuid/uuid.go b/vendor/github.com/google/uuid/uuid.go index daf3639c1..60d26bb50 100644 --- a/vendor/github.com/google/uuid/uuid.go +++ b/vendor/github.com/google/uuid/uuid.go @@ -37,7 +37,7 @@ var rander = rand.Reader // random function type invalidLengthError struct{ len int } -func (err *invalidLengthError) Error() string { +func (err invalidLengthError) Error() string { return fmt.Sprintf("invalid UUID length: %d", err.len) } @@ -74,7 +74,7 @@ func Parse(s string) (UUID, error) { } return uuid, nil default: - return uuid, &invalidLengthError{len(s)} + return uuid, invalidLengthError{len(s)} } // s is now at least 36 bytes long // it must be of the form xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx @@ -118,7 +118,7 @@ func ParseBytes(b []byte) (UUID, error) { } return uuid, nil default: - return uuid, &invalidLengthError{len(b)} + return uuid, invalidLengthError{len(b)} } // s is now at least 36 bytes long // it must be of the form xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx diff --git a/vendor/modules.txt b/vendor/modules.txt index 39771fbe8..58bffef2b 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -318,7 +318,7 @@ github.com/golang/protobuf/ptypes/timestamp github.com/google/gofuzz # github.com/google/shlex v0.0.0-20181106134648-c34317bd91bf github.com/google/shlex -# github.com/google/uuid v1.1.3 +# github.com/google/uuid v1.1.4 github.com/google/uuid # github.com/gorilla/mux v1.8.0 github.com/gorilla/mux |