diff options
Diffstat (limited to 'lib/mount.c')
-rw-r--r-- | lib/mount.c | 8 |
1 files changed, 8 insertions, 0 deletions
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 <stdio.h> #include <stdlib.h> @@ -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); +} |