From b764917cd5c1b1d61b8ce08e7af0b29793fbbb80 Mon Sep 17 00:00:00 2001 From: Valient Gough Date: Sat, 1 Oct 2016 21:14:18 -0700 Subject: lint fixes --- init_dir.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'init_dir.go') diff --git a/init_dir.go b/init_dir.go index 7f3d333..1f91e7b 100644 --- a/init_dir.go +++ b/init_dir.go @@ -22,13 +22,13 @@ func initDir(args *argContainer) { _, err = os.Stat(args.config) if err == nil { tlog.Fatal.Printf("Config file %q already exists", args.config) - os.Exit(ERREXIT_INIT) + os.Exit(ErrExitInit) } } else { err = checkDirEmpty(args.cipherdir) if err != nil { tlog.Fatal.Printf("Invalid cipherdir: %v", err) - os.Exit(ERREXIT_INIT) + os.Exit(ErrExitInit) } } // Choose password for config file @@ -40,7 +40,7 @@ func initDir(args *argContainer) { err = configfile.CreateConfFile(args.config, password, args.plaintextnames, args.scryptn, creator, args.aessiv) if err != nil { tlog.Fatal.Println(err) - os.Exit(ERREXIT_INIT) + os.Exit(ErrExitInit) } // Forward mode with filename encryption enabled needs a gocryptfs.diriv // in the root dir @@ -48,7 +48,7 @@ func initDir(args *argContainer) { err = nametransform.WriteDirIV(args.cipherdir) if err != nil { tlog.Fatal.Println(err) - os.Exit(ERREXIT_INIT) + os.Exit(ErrExitInit) } } mountArgs := "" -- cgit v1.2.3