From 0b6a0adc4d44e5b9d0855e257091eec643f3a185 Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Sat, 4 Dec 2004 00:40:50 +0000 Subject: backward compatibility --- lib/mount.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'lib/mount.c') diff --git a/lib/mount.c b/lib/mount.c index a84dbee..fd29020 100644 --- a/lib/mount.c +++ b/lib/mount.c @@ -7,6 +7,7 @@ */ #include "fuse.h" +#include "fuse_compat.h" #include #include @@ -124,3 +125,10 @@ int fuse_mount(const char *mountpoint, const char *opts) return rv; } + +int _fuse_mount_compat1(const char *mountpoint, const char *args[]) +{ + /* just ignore mount args for now */ + (void) args; + return fuse_mount(mountpoint, NULL); +} -- cgit v1.2.3