aboutsummaryrefslogtreecommitdiffstats
path: root/src/input_file.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-30 00:40:14 +0100
committerMax Kellermann <max@duempel.org>2009-01-30 00:40:14 +0100
commitdc1cc7e7e52960cceea5514397ec33f7ffc0dd6d (patch)
treea76aba35426426992ebfa3c58d0e348b5152658b /src/input_file.c
parent297101c3f869abe02aeb642774f6c82b75fcfe81 (diff)
downloadmpd-dc1cc7e7e52960cceea5514397ec33f7ffc0dd6d.tar.gz
mpd-dc1cc7e7e52960cceea5514397ec33f7ffc0dd6d.tar.xz
mpd-dc1cc7e7e52960cceea5514397ec33f7ffc0dd6d.zip
input_stream: let the implementation assign is->plugin
This way, plugins can manipulate the plugin pointer during open().
Diffstat (limited to '')
-rw-r--r--src/input_file.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/input_file.c b/src/input_file.c
index 5eee8101c..1b6d82f9d 100644
--- a/src/input_file.c
+++ b/src/input_file.c
@@ -62,6 +62,7 @@ input_file_open(struct input_stream *is, const char *filename)
posix_fadvise(fd, (off_t)0, is->size, POSIX_FADV_SEQUENTIAL);
#endif
+ is->plugin = &input_plugin_file;
is->data = GINT_TO_POINTER(fd);
is->ready = true;