summaryrefslogtreecommitdiff
path: root/daemon/graphdriver/aufs/aufs.go
diff options
context:
space:
mode:
Diffstat (limited to 'daemon/graphdriver/aufs/aufs.go')
-rw-r--r--daemon/graphdriver/aufs/aufs.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/graphdriver/aufs/aufs.go b/daemon/graphdriver/aufs/aufs.go
index eb8ff77cde..0206b92e17 100644
--- a/daemon/graphdriver/aufs/aufs.go
+++ b/daemon/graphdriver/aufs/aufs.go
@@ -295,7 +295,7 @@ func (a *Driver) Put(id string) {
// Returns an archive of the contents for the id
func (a *Driver) Diff(id string) (archive.Archive, error) {
- return archive.TarFilter(path.Join(a.rootPath(), "diff", id), &archive.TarOptions{
+ return archive.TarWithOptions(path.Join(a.rootPath(), "diff", id), &archive.TarOptions{
Compression: archive.Uncompressed,
})
}