aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2015-11-03 21:05:47 +0100
committerJakob Unterwurzacher2015-11-03 21:05:47 +0100
commit3e367b29b0d68b26c606231310e053ef9c8c48a9 (patch)
treefaaae5c01da1a3bd028cca62f307541b783ead03 /main.go
parent28b3af12d1c48f45b07552e68fd09b2e4cda28b6 (diff)
config: Introduce ext4-style feature flags
// List of feature flags this filesystem has enabled. // If gocryptfs encounters a feature flag it does not support, it will refuse // mounting. This mechanism is analogous to the ext4 feature flags that are // stored in the superblock. FeatureFlags []string
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index fef5aba..57dbe05 100644
--- a/main.go
+++ b/main.go
@@ -198,7 +198,7 @@ func main() {
var plaintextNames bool
if cf != nil {
- plaintextNames = cf.PlaintextNames
+ plaintextNames = cf.PlaintextNames()
}
srv := pathfsFrontend(key, args.cipherdir, args.mountpoint, args.fusedebug, args.openssl, plaintextNames)