summaryrefslogtreecommitdiff
path: root/vendor/github.com/prometheus/procfs/crypto.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-03-26 19:38:49 +0000
committerGitHub <noreply@github.com>2021-03-26 19:38:49 +0000
commitf3024b906ce717f7858c138a9c1daf72bdb8d132 (patch)
tree2c1adfa8ca6f622a88f03402dc7ff49524bf388d /vendor/github.com/prometheus/procfs/crypto.go
parentc81e273835303664d62c4e958a7f34877c05ed49 (diff)
parentfc197fb4f5c0e0d90da39fe672bce7d145272415 (diff)
downloadpodman-f3024b906ce717f7858c138a9c1daf72bdb8d132.tar.gz
podman-f3024b906ce717f7858c138a9c1daf72bdb8d132.tar.bz2
podman-f3024b906ce717f7858c138a9c1daf72bdb8d132.zip
Merge pull request #9821 from rhatdan/VENDOR
[NO TESTS NEEDED] Vendor in containers/buildah v1.20.0
Diffstat (limited to 'vendor/github.com/prometheus/procfs/crypto.go')
-rw-r--r--vendor/github.com/prometheus/procfs/crypto.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/github.com/prometheus/procfs/crypto.go b/vendor/github.com/prometheus/procfs/crypto.go
index a95893375..5048ad1f2 100644
--- a/vendor/github.com/prometheus/procfs/crypto.go
+++ b/vendor/github.com/prometheus/procfs/crypto.go
@@ -55,12 +55,12 @@ func (fs FS) Crypto() ([]Crypto, error) {
path := fs.proc.Path("crypto")
b, err := util.ReadFileNoStat(path)
if err != nil {
- return nil, fmt.Errorf("error reading crypto %s: %s", path, err)
+ return nil, fmt.Errorf("error reading crypto %q: %w", path, err)
}
crypto, err := parseCrypto(bytes.NewReader(b))
if err != nil {
- return nil, fmt.Errorf("error parsing crypto %s: %s", path, err)
+ return nil, fmt.Errorf("error parsing crypto %q: %w", path, err)
}
return crypto, nil