aboutsummaryrefslogtreecommitdiff
path: root/init_dir.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2017-03-05 18:13:56 +0100
committerJakob Unterwurzacher2017-03-05 18:13:56 +0100
commitdecda6d2559192b09289b5328b9446d2b6fa7ce0 (patch)
treec6f57c4786faad3813703500501ab948d4ee463a /init_dir.go
parentb7328815183b7a4ff37156085fb78e8e86aff165 (diff)
configfile: switch on Raw64 by default
As we have dropped Go 1.4 compatibility already, and will add a new feature flag for gocryptfs v1.3 anyway, this is a good time to enable Raw64 as well.
Diffstat (limited to 'init_dir.go')
-rw-r--r--init_dir.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/init_dir.go b/init_dir.go
index bf6740e..7b1dc7b 100644
--- a/init_dir.go
+++ b/init_dir.go
@@ -38,7 +38,7 @@ func initDir(args *argContainer) {
password := readpassword.Twice(args.extpass)
readpassword.CheckTrailingGarbage()
creator := tlog.ProgramName + " " + GitVersion
- err = configfile.CreateConfFile(args.config, password, args.plaintextnames, args.scryptn, creator, args.aessiv, args.raw64)
+ err = configfile.CreateConfFile(args.config, password, args.plaintextnames, args.scryptn, creator, args.aessiv)
if err != nil {
tlog.Fatal.Println(err)
os.Exit(ErrExitInit)