diff --git a/modules/access/ftp.c b/modules/access/ftp.c index f0157c66d50b5386dc5c5f884f5a3bd04a9f23a3..593cf942dfdcf59ad2c15a4af6e4130d2a861c23 100644 --- a/modules/access/ftp.c +++ b/modules/access/ftp.c @@ -979,7 +979,11 @@ static int DirRead (stream_t *p_access, input_item_node_t *p_current_node) vlc_memstream_putc(&ms, 's'); } vlc_memstream_puts(&ms, "://"); - vlc_memstream_puts(&ms, p_sys->url.psz_host); + + if (strchr(p_sys->url.psz_host, ':') != NULL) + vlc_memstream_printf(&ms, "[%s]", p_sys->url.psz_host); + else + vlc_memstream_puts(&ms, p_sys->url.psz_host); if (p_sys->url.i_port != ((p_sys->tlsmode != IMPLICIT) ? IPPORT_FTP : IPPORT_FTPS))