diff options
| author | Eric Biggers <ebiggers@google.com> | 2022-04-08 23:16:59 -0700 |
|---|---|---|
| committer | Eric Biggers <ebiggers@google.com> | 2022-04-08 23:38:01 -0700 |
| commit | ca7a84b8aea203025acbda193f78ea98946236b5 (patch) | |
| tree | 2b9e781db960662c570b5b35f840369130fc87a7 /filesystem | |
| parent | a224e769a478cc446c05dbfd5eb7e32d31933172 (diff) | |
Switch to google.golang.org/protobuf/proto
github.com/golang/protobuf/proto has been deprecated in favor of
google.golang.org/protobuf/proto, so migrate to the non-deprecated one.
Diffstat (limited to 'filesystem')
| -rw-r--r-- | filesystem/filesystem.go | 2 | ||||
| -rw-r--r-- | filesystem/filesystem_test.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/filesystem/filesystem.go b/filesystem/filesystem.go index 27bfa24..c6488b8 100644 --- a/filesystem/filesystem.go +++ b/filesystem/filesystem.go @@ -45,9 +45,9 @@ import ( "syscall" "time" - "github.com/golang/protobuf/proto" "github.com/pkg/errors" "golang.org/x/sys/unix" + "google.golang.org/protobuf/proto" "github.com/google/fscrypt/metadata" "github.com/google/fscrypt/util" diff --git a/filesystem/filesystem_test.go b/filesystem/filesystem_test.go index 0e15256..79fb133 100644 --- a/filesystem/filesystem_test.go +++ b/filesystem/filesystem_test.go @@ -27,8 +27,8 @@ import ( "syscall" "testing" - "github.com/golang/protobuf/proto" "golang.org/x/sys/unix" + "google.golang.org/protobuf/proto" "github.com/google/fscrypt/crypto" "github.com/google/fscrypt/metadata" |