From 7047c67a5e1a0d1b2e9b3c6ab732a39fdb827466 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Mon, 13 Feb 2017 09:23:21 +0000 Subject: [PATCH] sync: Fix log message containing --- fs/sync.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fs/sync.go b/fs/sync.go index 8d2445ae0..d7f8f3977 100644 --- a/fs/sync.go +++ b/fs/sync.go @@ -941,12 +941,12 @@ func (s *syncCopyMove) transfer(dst, src BasicInfo, job listDirJob, jobs *[]list } else { // FIXME src is file, dst is directory err := errors.New("can't overwrite directory with file") - Errorf(srcX, "%v", err) + Errorf(dst, "%v", err) s.processError(err) } case *Dir: // Do the same thing to the entire contents of the directory - dstX, ok := dst.(*Dir) + _, ok := dst.(*Dir) if ok { if job.srcDepth > 0 && job.dstDepth > 0 { *jobs = append(*jobs, listDirJob{ @@ -958,7 +958,7 @@ func (s *syncCopyMove) transfer(dst, src BasicInfo, job listDirJob, jobs *[]list } else { // FIXME src is dir, dst is file err := errors.New("can't overwrite file with directory") - Errorf(dstX, "%v", err) + Errorf(dst, "%v", err) s.processError(err) } default: