From 35da38e93fdaf0c50afa98decf90345c414603c9 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Thu, 31 Dec 2020 18:11:12 +0000 Subject: [PATCH] operations: fix --immutable error message This was accidentally changed in 53a1a0e3efb2cf04 accounting: add reference to completed transfers --- fs/operations/operations.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/operations/operations.go b/fs/operations/operations.go index 39358aaa4..4bcb2cd86 100644 --- a/fs/operations/operations.go +++ b/fs/operations/operations.go @@ -232,7 +232,7 @@ func equal(ctx context.Context, src fs.ObjectInfo, dst fs.Object, opt equalOpt) // Size and hash the same but mtime different // Error if objects are treated as immutable if ci.Immutable { - fs.Errorf(dst, "StartedAt mismatch between immutable objects") + fs.Errorf(dst, "Timestamp mismatch between immutable objects") return false } // Update the mtime of the dst object here