diff options
Diffstat (limited to '')
-rw-r--r-- | src/input/archive_input_plugin.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/input/archive_input_plugin.c b/src/input/archive_input_plugin.c index ad077828a..4847b4483 100644 --- a/src/input/archive_input_plugin.c +++ b/src/input/archive_input_plugin.c @@ -61,14 +61,14 @@ input_archive_open(struct input_stream *is, const char *pathname, return false; } - file = arplug->open(archive); + file = archive_file_open(arplug, archive); //setup fileops - opened = arplug->open_stream(file, is, filename, error_r); + opened = archive_file_open_stream(file, is, filename, error_r); g_free(pname); if (!opened) { - arplug->close(file); + archive_file_close(file); } else { is->ready = true; } |