summaryrefslogtreecommitdiff
path: root/pathfs_frontend
diff options
context:
space:
mode:
authorJakob Unterwurzacher2015-09-08 22:34:42 +0200
committerJakob Unterwurzacher2015-09-08 22:36:38 +0200
commit28cdff5889927fcf8d720f13fcfe139720906988 (patch)
tree1423404c1e9abc66e3bd73eb6af2457ada833615 /pathfs_frontend
parentb13cc9686c5497cf1e5971689d1112056ee10651 (diff)
tests: add TestCiphertextRange
Diffstat (limited to 'pathfs_frontend')
-rw-r--r--pathfs_frontend/file.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pathfs_frontend/file.go b/pathfs_frontend/file.go
index 6e7b4a1..47c2ffc 100644
--- a/pathfs_frontend/file.go
+++ b/pathfs_frontend/file.go
@@ -129,7 +129,7 @@ func (f *file) Write(data []byte, off int64) (uint32, fuse.Status) {
}
// Modify
blockData = f.cfs.MergeBlocks(oldData, blockData, int(b.Offset))
- cryptfs.Debug.Printf("oldData=%d blockData=%d\n", len(oldData), len(blockData))
+ cryptfs.Debug.Printf("len(oldData)=%d len(blockData)=%d\n", len(oldData), len(blockData))
}
// Write
blockOffset, _ := b.CiphertextRange()