summaryrefslogtreecommitdiff
path: root/vfs.c
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-04-25 13:02:53 +0200
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-04-25 13:02:53 +0200
commit5a59ffc070744e94675201d6e8164befec6d9813 (patch)
tree8f378ffd01e3488440c320f0bec6e5afc566695e /vfs.c
parent48594c75a15c4d3976efede324ad5bb92e38381e (diff)
removed old curl hacks/workarounds
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);
+ }
+}