Browse Source

default security to auto

Darien Raymond 8 years ago
parent
commit
08ece5d2bf
1 changed files with 1 additions and 4 deletions
  1. 1 4
      common/protocol/headers.go

+ 1 - 4
common/protocol/headers.go

@@ -86,10 +86,7 @@ type CommandSwitchAccount struct {
 }
 }
 
 
 func (sc *SecurityConfig) AsSecurity() Security {
 func (sc *SecurityConfig) AsSecurity() Security {
-	if sc == nil {
-		return Security(SecurityType_LEGACY)
-	}
-	if sc.Type == SecurityType_AUTO {
+	if sc == nil || sc.Type == SecurityType_AUTO {
 		if runtime.GOARCH == "amd64" || runtime.GOARCH == "s390x" {
 		if runtime.GOARCH == "amd64" || runtime.GOARCH == "s390x" {
 			return Security(SecurityType_AES128_GCM)
 			return Security(SecurityType_AES128_GCM)
 		}
 		}