diff --git a/modules/access/smb2.c b/modules/access/smb2.c index 17063c840683a867fed76bbfd1d662508c3b632b..c98c66a85788bd9334ba76ddb542bf186f9d3538 100644 --- a/modules/access/smb2.c +++ b/modules/access/smb2.c @@ -326,7 +326,10 @@ vlc_smb2_get_url(vlc_url_t *url, const char *file) /* smb2://<psz_host><psz_path><file>?<psz_option> */ struct vlc_memstream buf; vlc_memstream_open(&buf); - vlc_memstream_printf(&buf, "smb://%s", url->psz_host); + if (strchr(url->psz_host, ':') != NULL) + vlc_memstream_printf(&buf, "smb://[%s]", url->psz_host); + else + vlc_memstream_printf(&buf, "smb://%s", url->psz_host); if (url->psz_path != NULL) {