From 1661caeb9240aead114ad8cd0eb9242fb5021b12 Mon Sep 17 00:00:00 2001 From: Mark Feit Date: Sat, 4 Dec 2021 10:37:11 -0500 Subject: [PATCH] More fixups --- src/duplicacy_swiftstorage.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/duplicacy_swiftstorage.go b/src/duplicacy_swiftstorage.go index 0bfb44e9..700a4ac7 100644 --- a/src/duplicacy_swiftstorage.go +++ b/src/duplicacy_swiftstorage.go @@ -16,7 +16,7 @@ import ( type SwiftStorage struct { StorageBase - ctx *context.Context + ctx context.Context connection *swift.Connection container string storageDir string @@ -144,7 +144,7 @@ func CreateSwiftStorage(storageURL string, key string, threads int) (storage *Sw } storage = &SwiftStorage{ - context: &ctx, + ctx: ctx, connection: &connection, container: container, storageDir: storageDir,