Skip to content

Commit

Permalink
Fix for new static check failure.
Browse files Browse the repository at this point in the history
Signed-off-by: Derek Collison <[email protected]>
  • Loading branch information
derekcollison committed Sep 20, 2024
1 parent 816061f commit aff2c57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -3519,7 +3519,7 @@ func tlsVersionFromString(ver string) (uint16, error) {
case "1.3":
return tls.VersionTLS13, nil
}
return 0, fmt.Errorf("Unknown version: %v", ver)
return 0, fmt.Errorf("unknown version: %v", ver)
}

// We use hex here so we don't need multiple versions
Expand Down

0 comments on commit aff2c57

Please sign in to comment.