Commit cb4f2e2b authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* Don't skip the Real RTSP access if it is NOT forced. (apparently b_force was...

* Don't skip the Real RTSP access if it is NOT forced. (apparently b_force was broken before or something ? )
  This fixes #821

parent fccfe849
......@@ -150,8 +150,6 @@ static int Open( vlc_object_t *p_this )
char *psz_server = 0;
int i_result;
if( !p_access->b_force ) return VLC_EGENERIC;
p_access->pf_read = NULL;
p_access->pf_block = BlockRead;
p_access->pf_seek = Seek;
......@@ -225,7 +223,7 @@ static int Open( vlc_object_t *p_this )
}
else
{
msg_Dbg( p_access, "only real/helix rtsp servers supported for now" );
msg_Warn( p_access, "only real/helix rtsp servers supported for now" );
goto error;
}
......
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