diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/input/input_mms.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/input/input_mms.c b/src/input/input_mms.c index 9e6b1165f..3cc6ece28 100644 --- a/src/input/input_mms.c +++ b/src/input/input_mms.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: input_mms.c,v 1.22 2002/10/26 22:50:52 guenter Exp $ + * $Id: input_mms.c,v 1.23 2002/10/29 01:17:46 guenter Exp $ * * mms input plugin based on work from major mms */ @@ -258,6 +258,11 @@ static input_plugin_t *open_plugin (input_class_t *cls_gen, xine_stream_t *strea printf ("input_mms: trying to open '%s'\n", mrl); #endif + if (strncasecmp (mrl, "mms://", 6)) { + free (mrl); + return NULL; + } + mms = mms_connect (stream, mrl); if (!mms) { |