diff options
author | Jakob Unterwurzacher | 2018-03-28 19:19:58 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2018-03-28 19:19:58 +0200 |
commit | 1a3d04ab87c0f8ea281f47547f3cfeda50c7609a (patch) | |
tree | d89a5b24697b463cf1352e72194e8decd0b6c870 /internal | |
parent | c3e12b5e68637757bb51ed1d75ef12ce4c324df7 (diff) |
Switch from private copy to pkg/xattr
Now that https://github.com/pkg/xattr/pull/24
has been merged there is no reason to keep
our private copy.
Switch to the upstream version.
Diffstat (limited to 'internal')
-rw-r--r-- | internal/fusefrontend/xattr.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/fusefrontend/xattr.go b/internal/fusefrontend/xattr.go index 357e889..03e127f 100644 --- a/internal/fusefrontend/xattr.go +++ b/internal/fusefrontend/xattr.go @@ -8,7 +8,7 @@ import ( "syscall" "github.com/hanwen/go-fuse/fuse" - xattr "github.com/rfjakob/pkg-xattr" + "github.com/pkg/xattr" "github.com/rfjakob/gocryptfs/internal/tlog" ) |