Use NULL for option processing function where possible.
authorNikolaus Rath <Nikolaus@rath.org>
Tue, 11 Oct 2016 02:20:15 +0000 (19:20 -0700)
committerNikolaus Rath <Nikolaus@rath.org>
Thu, 13 Oct 2016 17:35:12 +0000 (10:35 -0700)
lib/fuse_lowlevel.c

index d10191bd25511e470e9025a7266ad84cb6f76b68..d07eed52a18dde1ce1934e77b9c6fa74c17c3f54 100644 (file)
@@ -2631,15 +2631,6 @@ void fuse_lowlevel_help(void)
 "    -o clone_fd              clone fuse device file descriptors\n\n");
 }
 
-static int fuse_ll_opt_proc(void *data, const char *arg, int key,
-                           struct fuse_args *outargs)
-{
-       (void) data; (void) outargs; (void) key; (void) arg;
-
-       /* Passthrough unknown options */
-       return 1;
-}
-
 void fuse_session_destroy(struct fuse_session *se)
 {
        struct fuse_ll_pipe *llp;
@@ -2846,7 +2837,7 @@ struct fuse_session *fuse_session_new(struct fuse_args *args,
        mo = parse_mount_opts(args);
        if (mo == NULL)
                goto out2;
-       if(fuse_opt_parse(args, se, fuse_ll_opts, fuse_ll_opt_proc) == -1)
+       if(fuse_opt_parse(args, se, fuse_ll_opts, NULL) == -1)
                goto out3;
        if (args->argc != 1) {
                int i;