diff options
author | Jakob Unterwurzacher | 2015-11-14 17:16:17 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2015-11-14 17:16:17 +0100 |
commit | 61aacb5c1bd3368366484b9e03cf90ccf85f1125 (patch) | |
tree | d62d9fed9fb500a6051e2b4919a094fd1556de24 /cryptfs/config_file.go | |
parent | f9c21e91aab4799425b25f5fb876c9d95865d9dc (diff) |
Run go fmt and go vet
Diffstat (limited to 'cryptfs/config_file.go')
-rw-r--r-- | cryptfs/config_file.go | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/cryptfs/config_file.go b/cryptfs/config_file.go index 346bef8..db0abf5 100644 --- a/cryptfs/config_file.go +++ b/cryptfs/config_file.go @@ -10,7 +10,7 @@ import "os" const ( // The dot "." is not used in base64url (RFC4648), hence // we can never clash with an encrypted file. - ConfDefaultName = "gocryptfs.conf" + ConfDefaultName = "gocryptfs.conf" FlagPlaintextNames = "PlaintextNames" ) @@ -79,12 +79,12 @@ func LoadConfFile(filename string, password string) ([]byte, *ConfFile, error) { } // Verify that we know all feature flags - for _, flag := range(cf.FeatureFlags) { - switch(flag) { - case FlagPlaintextNames: - continue - default: - return nil, nil, fmt.Errorf("Unsupported feature flag %s\n", flag) + for _, flag := range cf.FeatureFlags { + switch flag { + case FlagPlaintextNames: + continue + default: + return nil, nil, fmt.Errorf("Unsupported feature flag %s\n", flag) } } @@ -151,7 +151,7 @@ func (cf *ConfFile) WriteFile() error { // isFeatureFlagSet - is the feature flag "flagWant" enabled? func (cf *ConfFile) isFeatureFlagSet(flagWant string) bool { - for _, flag := range(cf.FeatureFlags) { + for _, flag := range cf.FeatureFlags { if flag == flagWant { return true } |