aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2015-12-10 19:38:02 +0100
committerJakob Unterwurzacher2015-12-10 19:38:02 +0100
commitb4b9072cc2cb55f177909d4c497f25c3fd1abaf5 (patch)
tree4da49f75c8c6f5426b8f1b624385e4016b2b19db /main.go
parentccf6d00728a8cb107ae2a829f89e7e234e468efb (diff)
Simplify CreateConfFile: do not allow specification of EMENames
Diffstat (limited to 'main.go')
-rw-r--r--main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.go b/main.go
index 1fdd242..21d8ed6 100644
--- a/main.go
+++ b/main.go
@@ -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)