fastcgi: Fix lint

This commit is contained in:
Matthew Holt 2026-05-08 10:46:28 -06:00
parent fb324331f4
commit 9c78b97f9e
No known key found for this signature in database

View file

@ -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