From 42de601fa6069aa44f0b418e0732bf687fea9360 Mon Sep 17 00:00:00 2001 From: Thomas Eales Date: Mon, 13 Jan 2020 01:23:35 +1100 Subject: [PATCH] crypt: reorder the filename encryption options This brings the default `standard` to the top of the list to replace `off` --- backend/crypt/crypt.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/crypt/crypt.go b/backend/crypt/crypt.go index f7f0f7e46..56d9cabf5 100644 --- a/backend/crypt/crypt.go +++ b/backend/crypt/crypt.go @@ -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.", }, }, }, {