]> git.sesse.net Git - vlc/commitdiff
* forwardport [17538] : Real RTSP selection fix. refs #821
authorDerk-Jan Hartman <hartman@videolan.org>
Wed, 8 Nov 2006 20:34:12 +0000 (20:34 +0000)
committerDerk-Jan Hartman <hartman@videolan.org>
Wed, 8 Nov 2006 20:34:12 +0000 (20:34 +0000)
modules/access/rtsp/access.c

index 39cd5a246f98c09bed4735d67f73df524b04c622..34a83dbe35deda8fe5c9bb36eaff1ed49978d03a 100644 (file)
@@ -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;
     }