Commit a8820e3e authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Match localhost plus / not localhost plus directory separator

parent 0c82a51e
...@@ -2362,7 +2362,7 @@ static int InputSourceInit( input_thread_t *p_input, ...@@ -2362,7 +2362,7 @@ static int InputSourceInit( input_thread_t *p_input,
) )
{ /* host specified -> only localhost is supported */ { /* host specified -> only localhost is supported */
static const size_t i_localhost = sizeof("localhost")-1; static const size_t i_localhost = sizeof("localhost")-1;
if( strncmp( psz_path, "localhost" DIR_SEP, i_localhost + 1) != 0 ) if( strncmp( psz_path, "localhost/", i_localhost + 1) != 0 )
{ {
msg_Err( p_input, "cannot open remote file `%s://%s'", msg_Err( p_input, "cannot open remote file `%s://%s'",
psz_access, psz_path ); psz_access, psz_path );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment