diff --git a/MANPAGE.md b/MANPAGE.md index 7ed5e1e..2f72169 100644 --- a/MANPAGE.md +++ b/MANPAGE.md @@ -30,6 +30,9 @@ DESCRIPTION Options: +**-config string** +: Use specified config file instead of CIPHERDIR/gocryptfs.conf + **-cpuprofile string** : Write cpu profile to specified file @@ -58,7 +61,7 @@ Options: : Change password **-plaintextnames** -: Do not encrypt file names - can only be used together with -init +: Do not encrypt file names **-q** : Quiet - silence informational messages diff --git a/main.go b/main.go index ece032e..e9eef33 100644 --- a/main.go +++ b/main.go @@ -134,7 +134,7 @@ func main() { flagSet.BoolVar(&args.foreground, "f", false, "Stay in the foreground") flagSet.BoolVar(&args.version, "version", false, "Print version and exit") flagSet.BoolVar(&args.plaintextnames, "plaintextnames", false, "Do not encrypt "+ - "file names - can only be used together with -init") + "file names") flagSet.BoolVar(&args.quiet, "q", false, "Quiet - silence informational messages") flagSet.StringVar(&args.masterkey, "masterkey", "", "Mount with explicit master key") flagSet.StringVar(&args.cpuprofile, "cpuprofile", "", "Write cpu profile to specified file")