mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
all: revert "all: prefer strings.LastIndexByte over strings.LastIndex"
This reverts https://golang.org/cl/66372. Updates #22148 Change-Id: I3e94af3dfc11a2883bf28e1d5e1f32f98760b3ee Reviewed-on: https://go-review.googlesource.com/68431 Reviewed-by: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
parent
61ea6f3dce
commit
53c5404836
2 changed files with 2 additions and 2 deletions
2
tls.go
2
tls.go
|
@ -122,7 +122,7 @@ func DialWithDialer(dialer *net.Dialer, network, addr string, config *Config) (*
|
|||
return nil, err
|
||||
}
|
||||
|
||||
colonPos := strings.LastIndexByte(addr, ':')
|
||||
colonPos := strings.LastIndex(addr, ":")
|
||||
if colonPos == -1 {
|
||||
colonPos = len(addr)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue