Skip to content

Commit

Permalink
Fixed format string variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Ne0nd0g committed Nov 27, 2023
1 parent aecd89a commit 8c0dfad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/utls/utls.go
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ func (t *Transport) RoundTrip(req *http.Request) (*http.Response, error) {
}
conn, err = net.Dial("tcp", address)
if err != nil {
return nil, fmt.Errorf("clients/utls/utls.go RoundTrip(): %w", err)
return nil, fmt.Errorf("clients/utls/utls.go RoundTrip(): %s", err)
}
} else {
// If there is a proxy, sent the HTTP CONNECT method request before establishing the TLS connection
Expand Down

0 comments on commit 8c0dfad

Please sign in to comment.