From 80935a0e1b3848608bcc8e1e1497435801ac9940 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Tue, 8 Sep 2015 23:09:28 +0200 Subject: Explain both frontends in readme Also, re-enable openssl and disable debug messages so testing gocryptfs is less painful --- pathfs_frontend/file.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pathfs_frontend/file.go') 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") -- cgit v1.2.3