diff options
Diffstat (limited to 'gocryptfs_main')
-rw-r--r-- | gocryptfs_main/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gocryptfs_main/main.go b/gocryptfs_main/main.go index dc5c921..912ff72 100644 --- a/gocryptfs_main/main.go +++ b/gocryptfs_main/main.go @@ -173,7 +173,6 @@ func main() { } srv := pathfsFrontend(key, cipherdir, mountpoint, fusedebug, openssl) - fmt.Printf("Mounted.\n") if zerokey == false && len(masterkey) == 0 { printMasterKey(key) @@ -183,6 +182,7 @@ func main() { fmt.Printf("THE MASTER KEY IS VISIBLE VIA \"ps -auxwww\", ONLY USE THIS MODE FOR EMERGENCIES.\n") } + fmt.Println("Filesystem ready.") // Send notification to our parent sendSig() // Jump into server loop |