From: Derk-Jan Hartman Date: Wed, 8 Nov 2006 20:34:12 +0000 (+0000) Subject: * forwardport [17538] : Real RTSP selection fix. refs #821 X-Git-Tag: 0.9.0-test0~9618 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=017f4aed2b29fb7cd2785cf1b74f3ed6719af29b;hp=4e03e109f4357df5eb72b83db3da243543191726;p=vlc * forwardport [17538] : Real RTSP selection fix. refs #821 --- diff --git a/modules/access/rtsp/access.c b/modules/access/rtsp/access.c index 39cd5a246f..34a83dbe35 100644 --- a/modules/access/rtsp/access.c +++ b/modules/access/rtsp/access.c @@ -153,8 +153,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; @@ -230,7 +228,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; }