aboutsummaryrefslogtreecommitdiff
path: root/src/input_stream.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-30 00:53:32 +0100
committerMax Kellermann <max@duempel.org>2009-01-30 00:53:32 +0100
commit82cfce76eb5787f1a24151f6a3840a999ed82659 (patch)
tree05c8ee19ff9bd9cc69e6f50c1aeeacc77efbde44 /src/input_stream.h
parentdc1cc7e7e52960cceea5514397ec33f7ffc0dd6d (diff)
archive: replaced setup_stream() with open_stream()
The open_stream() method opens the input_stream. This allows the archive plugin to do its own initialization, and it also allows it to use input_stream.data. We can remove input_stream.archive now, which was unnatural to have in the first place.
Diffstat (limited to 'src/input_stream.h')
-rw-r--r--src/input_stream.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/input_stream.h b/src/input_stream.h
index f57ac312..d8698c4c 100644
--- a/src/input_stream.h
+++ b/src/input_stream.h
@@ -77,8 +77,6 @@ struct input_stream {
* the MIME content type of the resource, or NULL if unknown
*/
char *mime;
-
- void *archive;
};
/**