aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGravatar Miklos Szeredi <miklos@szeredi.hu>2002-10-25 11:40:14 +0000
committerGravatar Miklos Szeredi <miklos@szeredi.hu>2002-10-25 11:40:14 +0000
commitd6e9f88da7cea46cf63d30911b9297ccf1befd5c (patch)
treec7ebc671683f4c75fd09c040fca3b3b0f23ec0b8 /include
parent5e5d61fea489aff7b2f70840060ad19c9e6c2bbe (diff)
use fuse_mount in fuse_main
Diffstat (limited to 'include')
-rw-r--r--include/fuse.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/fuse.h b/include/fuse.h
index 78cd877..6a3ed3a 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -116,10 +116,11 @@ extern "C" {
* fuse_new()
*
* @param mountpoint the mount point path
- * @param mount arguments (passed to the fusermount program)
+ * @param args array of arguments to be passed to fusermount (NULL
+ * terminated). Can be NULL if no arguments are needed.
* @return the control file descriptor on success, -1 on failure
*/
-int fuse_mount(const char *mountpoint, const char *mount_args);
+int fuse_mount(const char *mountpoint, const char *args[]);
/**
* Create a new FUSE filesystem.