diff --git a/common/protocol/headers.go b/common/protocol/headers.go index 00945f8e..1304a7e4 100644 --- a/common/protocol/headers.go +++ b/common/protocol/headers.go @@ -86,10 +86,7 @@ type CommandSwitchAccount struct { } 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" { return Security(SecurityType_AES128_GCM) }