diff options
author | Max Kellermann <max@duempel.org> | 2010-01-18 09:26:10 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2010-01-18 10:18:41 +0100 |
commit | 9cb7760c5eb63cb6b7034ec9d2cdf9af2f198652 (patch) | |
tree | c15ed352beb3637c4186f3000152bf1a39008896 /src/input/mms_input_plugin.c | |
parent | fb9bd53328e3ff57ea4b3cfee24068f9fb54927b (diff) | |
download | mpd-9cb7760c5eb63cb6b7034ec9d2cdf9af2f198652.tar.gz mpd-9cb7760c5eb63cb6b7034ec9d2cdf9af2f198652.tar.xz mpd-9cb7760c5eb63cb6b7034ec9d2cdf9af2f198652.zip |
input_stream: added attribute "uri"
Diffstat (limited to 'src/input/mms_input_plugin.c')
-rw-r--r-- | src/input/mms_input_plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/mms_input_plugin.c b/src/input/mms_input_plugin.c index 31a75fdba..8d4f7591d 100644 --- a/src/input/mms_input_plugin.c +++ b/src/input/mms_input_plugin.c @@ -56,7 +56,7 @@ input_mms_open(const char *url, GError **error_r) return NULL; m = g_new(struct input_mms, 1); - input_stream_init(&m->base, &input_plugin_mms); + input_stream_init(&m->base, &input_plugin_mms, url); m->mms = mmsx_connect(NULL, NULL, url, 128 * 1024); if (m->mms == NULL) { |