[vlc-commits] sftp: use vlc_UrlParseFixup
    Thomas Guillem 
    git at videolan.org
       
    Thu Dec  7 09:27:58 CET 2017
    
    
  
vlc/vlc-3.0 | branch: master | Thomas Guillem <thomas at gllm.fr> | Wed Dec  6 09:35:22 2017 +0100| [0a67efffb5aa6fde2e8e850bc5308c27d845e8e7] | committer: Thomas Guillem
sftp: use vlc_UrlParseFixup
(cherry picked from commit a495e2b5d37d212dca69aef88329b6a82bb8359a)
Signed-off-by: Thomas Guillem <thomas at gllm.fr>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=0a67efffb5aa6fde2e8e850bc5308c27d845e8e7
---
 modules/access/sftp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/access/sftp.c b/modules/access/sftp.c
index d6724dd71c..b52ad3605f 100644
--- a/modules/access/sftp.c
+++ b/modules/access/sftp.c
@@ -250,7 +250,7 @@ static int Open( vlc_object_t* p_this )
     p_sys->i_socket = -1;
 
     /* Parse the URL */
-    vlc_UrlParse( &url, p_access->psz_url );
+    vlc_UrlParseFixup( &url, p_access->psz_url );
     vlc_credential_init( &credential, &url );
     if( url.psz_path != NULL )
     {
    
    
More information about the vlc-commits
mailing list