diff options
author | Jakob Unterwurzacher | 2015-09-08 22:34:42 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2015-09-08 22:36:38 +0200 |
commit | 28cdff5889927fcf8d720f13fcfe139720906988 (patch) | |
tree | 1423404c1e9abc66e3bd73eb6af2457ada833615 /pathfs_frontend | |
parent | b13cc9686c5497cf1e5971689d1112056ee10651 (diff) |
tests: add TestCiphertextRange
Diffstat (limited to 'pathfs_frontend')
-rw-r--r-- | pathfs_frontend/file.go | 2 |
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() |