aboutsummaryrefslogtreecommitdiff
path: root/src/input/archive_input_plugin.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/input/archive_input_plugin.c')
-rw-r--r--src/input/archive_input_plugin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/input/archive_input_plugin.c b/src/input/archive_input_plugin.c
index ad077828..4847b448 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;
}