replaced fmt.Sprintf with net.JoinHostPort

This commit is contained in:
Logan Freijo 2024-04-15 09:15:46 -04:00 committed by GitHub
parent acf978cd45
commit 84334439b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

2
ftp.go
View File

@ -161,7 +161,7 @@ func Dial(addr string, options ...DialOption) (*ServerConn, error) {
return nil, err return nil, err
} }
tconn, err := dialFunc("tcp", fmt.Sprintf("%s:%s", addrs[0].IP.String(), port)) tconn, err := dialFunc("tcp", net.JoinHostPort(addrs[0].IP.String(), port))
if err != nil { if err != nil {
return nil, err return nil, err
} }