mirror of
https://github.com/caddyserver/caddy.git
synced 2026-08-27 04:00:17 +00:00
fastcgi: Fix lint
This commit is contained in:
parent
fb324331f4
commit
9c78b97f9e
1 changed files with 1 additions and 1 deletions
|
|
@ -449,7 +449,7 @@ func (t Transport) splitPos(path string) int {
|
|||
|
||||
for i := 0; i <= pathLen-splitLen; i++ {
|
||||
match := true
|
||||
for j := 0; j < splitLen; j++ {
|
||||
for j := range splitLen {
|
||||
c := path[i+j]
|
||||
if c >= utf8.RuneSelf {
|
||||
match = false
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue