summaryrefslogtreecommitdiffstats
path: root/sysutils/fusefs-libs/files/patch-lib_helper.c
blob: d3485cd7c78e3a8120e1c210bb310707e908921c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
--- lib/helper.c.orig	Mon Aug 15 16:03:59 2005
+++ lib/helper.c	Sun Oct  9 22:05:09 2005
@@ -22,7 +22,11 @@
 {
     if (progname)
         fprintf(stderr,
+#ifdef __FreeBSD__
+                "usage: %s [FUSE options]\n\n", progname);
+#else
                 "usage: %s mountpoint [FUSE options]\n\n", progname);
+#endif
 
     fprintf(stderr,
             "FUSE options:\n"
@@ -45,11 +49,19 @@
             "    debug                  enable debug output\n"
             "    fsname=NAME            set filesystem name in mtab\n"
             "    use_ino                let filesystem set inode numbers\n"
+#ifndef __FreeBSD__
             "    readdir_ino            try to fill in d_ino in readdir\n"
+#endif
             "    nonempty               allow mounts over non-empty file/dir\n"
             "    umask=M                set file permissions (octal)\n"
             "    uid=N                  set file owner\n"
             "    gid=N                  set file group\n"
+#ifdef __FreeBSD__
+            "\n"
+            "(Note that the above description regards to Linux. Hence these\n"
+            "options might work differently or might not work at all.\n"
+            "For more information, see mount_fusefs(8).)\n"
+#endif
             );
 }
 
@@ -275,11 +287,13 @@
         }
     }
 
+#ifndef __FreeBSD__
     if (*mountpoint == NULL) {
         fprintf(stderr, "missing mountpoint\n");
         fprintf(stderr, "see `%s -h' for usage\n", argv[0]);
         goto err;
     }
+#endif
     return 0;
 
  err:
@@ -377,8 +391,13 @@
         fuse_instance = NULL;
 
     fuse_destroy(fuse);
+#ifndef __FreeBSD__
     close(fd);
     fuse_unmount(mountpoint);
+#else
+    fuse_unmount(mountpoint);
+    close(fd);
+#endif
     free(mountpoint);
 }
 
OpenPOWER on IntegriCloud