From b8c191b51c20f374b00f6f3c5035cecf4c00c070 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Thu, 27 Jun 2013 19:49:35 +0100 Subject: [PATCH] swift: Store root for later when we support directories --- fs_swift.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fs_swift.go b/fs_swift.go index 5cf66645a..a2642a125 100644 --- a/fs_swift.go +++ b/fs_swift.go @@ -20,6 +20,7 @@ import ( type FsSwift struct { c swift.Connection // the connection to the swift server container string // the container we are working on + root string // the path we are working on if any } // FsObjectSwift describes a swift object @@ -100,7 +101,7 @@ func NewFsSwift(path string) (*FsSwift, error) { if err != nil { return nil, err } - f := &FsSwift{c: *c, container: container} + f := &FsSwift{c: *c, container: container, root: directory} return f, nil }