diff options
author | Jakob Unterwurzacher | 2017-03-06 22:59:30 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2017-03-07 20:56:50 +0100 |
commit | efc88346bec52675d5243f988aa3386d617ee1c4 (patch) | |
tree | d6284e4d3209843a56113810c1e119c37b7813f8 /cli_args.go | |
parent | f1244b6d06a4932e8a51adedf351ec83262c2db5 (diff) |
cli: enable "-raw64" by default
This brings the CLI options back in sync with the default
feature flags.
Diffstat (limited to 'cli_args.go')
-rw-r--r-- | cli_args.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli_args.go b/cli_args.go index de36a10..00e9324 100644 --- a/cli_args.go +++ b/cli_args.go @@ -108,7 +108,7 @@ func parseCliOpts() (args argContainer) { flagSet.BoolVar(&args.reverse, "reverse", false, "Reverse mode") flagSet.BoolVar(&args.aessiv, "aessiv", false, "AES-SIV encryption") flagSet.BoolVar(&args.nonempty, "nonempty", false, "Allow mounting over non-empty directories") - flagSet.BoolVar(&args.raw64, "raw64", false, "Use unpadded base64 for file names") + flagSet.BoolVar(&args.raw64, "raw64", true, "Use unpadded base64 for file names") flagSet.BoolVar(&args.noprealloc, "noprealloc", false, "Disable preallocation before writing") flagSet.BoolVar(&args.speed, "speed", false, "Run crypto speed test") flagSet.BoolVar(&args.hkdf, "hkdf", true, "Use HKDF as an additional key derivation step") |