summaryrefslogtreecommitdiff
path: root/src/input/input_http.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/input/input_http.c')
-rw-r--r--src/input/input_http.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/input/input_http.c b/src/input/input_http.c
index 0d2cb7975..e7d27b1e4 100644
--- a/src/input/input_http.c
+++ b/src/input/input_http.c
@@ -929,10 +929,6 @@ static void http_class_dispose (input_class_t *this_gen) {
free (this);
}
-static int http_plugin_eject_media (input_class_t *this_gen) {
- return 1; /* doesn't make sense */
-}
-
static void *init_class (xine_t *xine, void *data) {
http_input_class_t *this;
@@ -950,7 +946,7 @@ static void *init_class (xine_t *xine, void *data) {
this->input_class.get_dir = NULL;
this->input_class.get_autoplay_list = NULL;
this->input_class.dispose = http_class_dispose;
- this->input_class.eject_media = http_plugin_eject_media;
+ this->input_class.eject_media = NULL;
return this;
}