Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

treewide: fix spelling errors #184

Merged
merged 1 commit into from
Mar 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion attestationreport/validationreport.go
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ func (r *VerificationResult) PrintErr() {
}
r.DevDescResult.RtmOsCompatibility.PrintErr("RTM OS compatibility")
for _, a := range r.DevDescResult.OsAppsCompatibility {
a.PrintErr("OS App compatibiltiy check")
a.PrintErr("OS App compatibility check")
}

if !r.PolicySuccess {
Expand Down
2 changes: 1 addition & 1 deletion attestedhttp/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ func prepareClient(c *Client) error {
MaxResponseHeaderBytes: c.Transport.MaxResponseHeaderBytes,
WriteBufferSize: c.Transport.WriteBufferSize,
ReadBufferSize: c.Transport.ReadBufferSize,
TLSClientConfig: c.Transport.TLSClientConfig, // Ignored becuase of custom DialContext
TLSClientConfig: c.Transport.TLSClientConfig, // Ignored because of custom DialContext
IdleConnTimeout: c.Transport.IdleConnTimeout,
// Fixed custom TLS dial function to enforce aHTTPS
DialTLSContext: func(ctx context.Context, network, addr string) (net.Conn, error) {
Expand Down
2 changes: 1 addition & 1 deletion ima/ima.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ func parseImaRuntimeDigests(data []byte) ([]ar.PcrEvent, error) {
// Parse the template data to retrieve additional information
_, eventName, err := parseTemplateData(&template)
if err != nil {
log.Tracef("Failed to parse addtional template data: %v", err)
log.Tracef("Failed to parse additional template data: %v", err)
}

event := ar.PcrEvent{
Expand Down
Loading