From 5a59ffc070744e94675201d6e8164befec6d9813 Mon Sep 17 00:00:00 2001 From: Alexey Yakovenko Date: Sun, 25 Apr 2010 13:02:53 +0200 Subject: removed old curl hacks/workarounds --- vfs.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'vfs.c') 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); + } +} -- cgit v1.2.3