struct mount_opts *parse_mount_opts(struct fuse_args *args);
void destroy_mount_opts(struct mount_opts *mo);
-void fuse_mount_help(void);
void fuse_mount_version(void);
-
void fuse_kern_unmount(const char *mountpoint, int fd);
int fuse_kern_mount(const char *mountpoint, struct mount_opts *mo);
void fuse_lowlevel_help(void)
{
- fuse_mount_help();
+ /* These are not all options, but the ones that are
+ potentially of interest to an end-user */
+ printf(
+" -o allow_other allow access to other users\n"
+" -o allow_root allow access to root\n"
+" -o auto_unmount auto unmount on process termination\n");
}
void fuse_session_destroy(struct fuse_session *se)
if (opts.show_version) {
printf("FUSE library version %s\n", PACKAGE_VERSION);
fuse_lowlevel_version();
- fuse_mount_version();
res = 0;
goto out1;
}
FUSE_OPT_END
};
-void fuse_mount_help(void)
-{
- /* These are not all options, but the ones that are
- potentially of interest to an end-user */
- printf(
-" -o allow_other allow access to other users\n"
-" -o allow_root allow access to root\n"
-" -o auto_unmount auto unmount on process termination\n");
-}
-
static void exec_fusermount(const char *argv[])
{
execv(FUSERMOUNT_DIR "/" FUSERMOUNT_PROG, (char **) argv);
FUSE_OPT_END
};
-void fuse_mount_help(void)
-{
- printf(
-" -o allow_root allow access to root\n");
- system(FUSERMOUNT_PROG " --help");
-}
-
void fuse_mount_version(void)
{
system(FUSERMOUNT_PROG " --version");