summaryrefslogtreecommitdiff
path: root/vfs.c
diff options
context:
space:
mode:
Diffstat (limited to 'vfs.c')
-rw-r--r--vfs.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/vfs.c b/vfs.c
index f676c38c..d4cf6ab2 100644
--- a/vfs.c
+++ b/vfs.c
@@ -91,3 +91,9 @@ vfs_get_content_type (DB_FILE *stream) {
return stream->vfs->get_content_type (stream);
}
+void
+vfs_fabort (DB_FILE *stream) {
+ if (stream->vfs->abort) {
+ stream->vfs->abort (stream);
+ }
+}