diff options
| author | Joseph Richey <joerichey94@gmail.com> | 2017-10-19 02:21:08 -0700 |
|---|---|---|
| committer | Joseph Richey <joerichey94@gmail.com> | 2017-10-19 02:22:29 -0700 |
| commit | 0d4d11af2883bac66ecc427cdde37aa995b93ca8 (patch) | |
| tree | be426d602b210d91a3e0121ad4757dad8fef44cd /cmd/fscrypt | |
| parent | 18925df4483ccf5c48dfb4314f85c1b37a1cbe81 (diff) | |
Random changesext4
Diffstat (limited to 'cmd/fscrypt')
| -rw-r--r-- | cmd/fscrypt/fscrypt.go | 4 | ||||
| -rw-r--r-- | cmd/fscrypt/setup.go | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/cmd/fscrypt/fscrypt.go b/cmd/fscrypt/fscrypt.go index 2054193..c696545 100644 --- a/cmd/fscrypt/fscrypt.go +++ b/cmd/fscrypt/fscrypt.go @@ -63,7 +63,7 @@ var baseFlags = []cmd.Flag{cmd.VerboseFlag, cmd.QuietFlag, cmd.HelpFlag} var fscryptCommand = cmd.Command{ Title: "manage linux filesystem encryption", UsageLines: []string{ - fmt.Sprintf("<command> [arguments] [options] [%s|%s]", + fmt.Sprintf("<command> [arguments] [options] [%s | %s]", cmd.VerboseFlag, cmd.QuietFlag), cmd.VersionUsage, }, @@ -77,7 +77,7 @@ var setupCommand = &cmd.Command{ Name: "setup", Title: "setup a system/filesystem to use fscrypt", UsageLines: []string{ - fmt.Sprintf("[options]"), + fmt.Sprintf("[%s] [%]"), fmt.Sprintf("%s [%s]", unusedMountpointArg, cmd.ForceFlag), }, Arguments: []*cmd.Argument{unusedMountpointArg}, diff --git a/cmd/fscrypt/setup.go b/cmd/fscrypt/setup.go index a421783..9620c88 100644 --- a/cmd/fscrypt/setup.go +++ b/cmd/fscrypt/setup.go @@ -49,7 +49,7 @@ func createGlobalConfig(path string) error { return err } - fmt.Fprintln(cmd.Output, "Customizing passphrase hashing difficulty for this system...") + fmt.Fprintln(cmd.Output, "Customizing passphrase hashing difficulty for this system ...") err = actions.CreateConfigFile(timeTargetFlag.Value, legacyFlag.Value) if err != nil { return err |