diff options
author | Jakob Unterwurzacher | 2015-12-10 19:38:02 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2015-12-10 19:38:02 +0100 |
commit | b4b9072cc2cb55f177909d4c497f25c3fd1abaf5 (patch) | |
tree | 4da49f75c8c6f5426b8f1b624385e4016b2b19db /main.go | |
parent | ccf6d00728a8cb107ae2a829f89e7e234e468efb (diff) |
Simplify CreateConfFile: do not allow specification of EMENames
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -55,7 +55,7 @@ func initDir(args *argContainer) { // Create gocryptfs.conf cryptfs.Info.Printf("Choose a password for protecting your files.\n") password := readPasswordTwice(args.extpass) - err = cryptfs.CreateConfFile(args.config, password, args.plaintextnames, args.scryptn, args.emenames) + err = cryptfs.CreateConfFile(args.config, password, args.plaintextnames, args.scryptn) if err != nil { fmt.Println(err) os.Exit(ERREXIT_INIT) @@ -267,7 +267,7 @@ func main() { // Initialize FUSE server cryptfs.Debug.Printf("cli args: %v\n", args) srv := pathfsFrontend(masterkey, args, confFile) - cryptfs.Info.Println("Filesystem ready.") + cryptfs.Info.Println("Filesystem mounted and ready.") // We are ready - send USR1 signal to our parent if args.notifypid > 0 { sendUsr1(args.notifypid) |