summaryrefslogtreecommitdiff
path: root/pathfs_frontend
diff options
context:
space:
mode:
authorJakob Unterwurzacher2015-09-08 23:09:28 +0200
committerJakob Unterwurzacher2015-09-08 23:09:28 +0200
commit80935a0e1b3848608bcc8e1e1497435801ac9940 (patch)
tree020eff5e8949dafaf6fcc3ccfacb1794b8eeac3a /pathfs_frontend
parentbfdbbbf8b476c810ac9d5c47a7fa6f7cc8904a55 (diff)
Explain both frontends in readme
Also, re-enable openssl and disable debug messages so testing gocryptfs is less painful
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 47c2ffc..8fdd4b2 100644
--- a/pathfs_frontend/file.go
+++ b/pathfs_frontend/file.go
@@ -90,7 +90,7 @@ func (f *file) doRead(off uint64, length uint64) ([]byte, fuse.Status) {
// Read - FUSE call
func (f *file) Read(buf []byte, off int64) (resultData fuse.ReadResult, code fuse.Status) {
- cryptfs.Debug.Printf("\n\nGot read request: len=%d off=%d\n", len(buf), off)
+ cryptfs.Debug.Printf("Read: offset=%d length=%d\n", len(buf), off)
if f.writeOnly {
cryptfs.Warn.Printf("Tried to read from write-only file\n")