diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-10-20 20:51:17 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-10-20 20:51:17 +0000 |
commit | 6310aaba621c66e104511696f3ca65fbb167c4ea (patch) | |
tree | d0eab6c5c2299eb398064353c95df561ca112ca9 /src | |
parent | cb8b0a5536924b35c1def29fb421edcc90664520 (diff) | |
download | xine-lib-6310aaba621c66e104511696f3ca65fbb167c4ea.tar.gz xine-lib-6310aaba621c66e104511696f3ca65fbb167c4ea.tar.bz2 |
get_optional_data was missing
CVS patchset: 2890
CVS date: 2002/10/20 20:51:17
Diffstat (limited to 'src')
-rw-r--r-- | src/input/input_http.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/input/input_http.c b/src/input/input_http.c index a1975a0a0..dcc6595cf 100644 --- a/src/input/input_http.c +++ b/src/input/input_http.c @@ -715,6 +715,7 @@ static input_plugin_t *open_plugin (input_class_t *cls_gen, xine_stream_t *strea this->input_plugin.get_length = http_plugin_get_length; this->input_plugin.get_blocksize = http_plugin_get_blocksize; this->input_plugin.get_mrl = http_plugin_get_mrl; + this->input_plugin.get_optional_data = http_plugin_get_optional_data; this->input_plugin.dispose = http_plugin_dispose; this->input_plugin.input_class = cls_gen; |