crypt: reorder the filename encryption options

This brings the default `standard` to the top of the list to replace `off`
This commit is contained in:
Thomas Eales 2020-01-13 01:23:35 +11:00 committed by Nick Craig-Wood
parent 3801b8109e
commit 42de601fa6
1 changed files with 3 additions and 3 deletions

View File

@ -35,14 +35,14 @@ func init() {
Default: "standard",
Examples: []fs.OptionExample{
{
Value: "off",
Help: "Don't encrypt the file names. Adds a \".bin\" extension only.",
}, {
Value: "standard",
Help: "Encrypt the filenames see the docs for the details.",
}, {
Value: "obfuscate",
Help: "Very simple filename obfuscation.",
}, {
Value: "off",
Help: "Don't encrypt the file names. Adds a \".bin\" extension only.",
},
},
}, {