aboutsummaryrefslogtreecommitdiff
path: root/src/input/rewind_input_plugin.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2010-01-04 21:42:11 +0100
committerMax Kellermann <max@duempel.org>2010-01-04 21:45:32 +0100
commit2f8135ef8bb4723e040571e38699300f21334127 (patch)
tree9fdaded4ca3c6fa9e03af04d04cd2e81f729ea58 /src/input/rewind_input_plugin.c
parent9b9abff97272b52f133ff23addd58b6a90a49a73 (diff)
input/rewind: enable the "rewind" wrapper for all non-seekable streams
Don't limit the "rewind" input plugin to CURL streams.
Diffstat (limited to 'src/input/rewind_input_plugin.c')
-rw-r--r--src/input/rewind_input_plugin.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/input/rewind_input_plugin.c b/src/input/rewind_input_plugin.c
index 68b3e803..2804dd1b 100644
--- a/src/input/rewind_input_plugin.c
+++ b/src/input/rewind_input_plugin.c
@@ -221,9 +221,8 @@ input_rewind_open(struct input_stream *is)
assert(is != NULL);
assert(is->offset == 0);
- if (is->plugin != &input_plugin_curl)
- /* due to limitations in the input_plugin API, we only
- (explicitly) support the CURL input plugin */
+ if (is->seekable)
+ /* seekable resources don't need this plugin */
return is;
c = g_new(struct input_rewind, 1);