diff options
author | Max Kellermann <max@duempel.org> | 2009-01-30 00:40:14 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-30 00:40:14 +0100 |
commit | dc1cc7e7e52960cceea5514397ec33f7ffc0dd6d (patch) | |
tree | a76aba35426426992ebfa3c58d0e348b5152658b /src/input_file.c | |
parent | 297101c3f869abe02aeb642774f6c82b75fcfe81 (diff) | |
download | mpd-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 'src/input_file.c')
-rw-r--r-- | src/input_file.c | 1 |
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; |