| commit | 40252ebad72691b0b6d2a931d5c3e12ceb0bb321 | [log] [tgz] |
|---|---|---|
| author | Abhay Kumar <abhay.kumar@radisys.com> | Mon Oct 13 13:25:53 2025 +0000 |
| committer | Abhay Kumar <abhay.kumar@radisys.com> | Sun Nov 02 21:50:28 2025 +0000 |
| tree | 08793e409474d01ea6872d7573a86882c4e28423 | |
| parent | 685507db7c66a507a6c9a01f592c0206634a5055 [diff] [blame] |
[VOL-5486] Upgrade library versions Change-Id: I8b4e88699e03f44ee13e467867f45ae3f0a63c4b Signed-off-by: Abhay Kumar <abhay.kumar@radisys.com>
diff --git a/vendor/github.com/jcmturner/gokrb5/v8/credentials/ccache.go b/vendor/github.com/jcmturner/gokrb5/v8/credentials/ccache.go index c3b35c7..a021e41 100644 --- a/vendor/github.com/jcmturner/gokrb5/v8/credentials/ccache.go +++ b/vendor/github.com/jcmturner/gokrb5/v8/credentials/ccache.go
@@ -4,7 +4,7 @@ "bytes" "encoding/binary" "errors" - "io/ioutil" + "os" "strings" "time" "unsafe" @@ -63,7 +63,7 @@ // LoadCCache loads a credential cache file into a CCache type. func LoadCCache(cpath string) (*CCache, error) { c := new(CCache) - b, err := ioutil.ReadFile(cpath) + b, err := os.ReadFile(cpath) if err != nil { return c, err }