From 28e13afaff70443d3660420753bc3ba4373f15c3 Mon Sep 17 00:00:00 2001 From: Guenter Bartsch Date: Tue, 9 Apr 2002 23:16:31 +0000 Subject: make sure asxparser doesn't try to handle mms:// style mrls CVS patchset: 1704 CVS date: 2002/04/09 23:16:31 --- src/input/input_mms.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/input/input_mms.c b/src/input/input_mms.c index 3822d87e6..a323e9d1c 100644 --- a/src/input/input_mms.c +++ b/src/input/input_mms.c @@ -82,11 +82,13 @@ static int mms_plugin_open (input_plugin_t *this_gen, char *mrl) { mms_input_plugin_t *this = (mms_input_plugin_t *) this_gen; - error_id=asx_parse(mrl,&nmrl); - - if(error_id) - return 0; + if (strncmp (mrl, "mms://", 6)) { + error_id=asx_parse(mrl,&nmrl); + if(error_id) + return 0; + } + if(!nmrl) nmrl=mrl; -- cgit v1.2.3