Overview
Comment: | Updated to exit in success from "-h" and to ignore the "-v" option |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
ff9238cef430b60d9977ed6fc9f4554c |
User & Date: | rkeene on 2014-12-29 03:49:41 |
Other Links: | manifest | tags |
Context
2014-12-29
| ||
03:50 | Post-release version increment (a tad late) check-in: 94a220b715 user: rkeene tags: trunk | |
03:49 | Updated to exit in success from "-h" and to ignore the "-v" option check-in: ff9238cef4 user: rkeene tags: trunk | |
2014-12-01
| ||
02:02 | Updated to not try to update package information for each sites when stat()'ing them check-in: 42a3efcd94 user: rkeene tags: trunk | |
Changes
Modified appfsd.c from [bb0851401c] to [7c511aec25].
︙ | ︙ | |||
1982 1983 1984 1985 1986 1987 1988 | fuse_opt_add_arg(args, "-odefault_permissions,fsname=appfs,subtype=appfsd,use_ino,kernel_cache,entry_timeout=0,attr_timeout=0,big_writes,intr,hard_remove"); if (getuid() == 0) { fuse_opt_parse(args, NULL, NULL, NULL); fuse_opt_add_arg(args, "-oallow_other"); } | | > > > | 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 | fuse_opt_add_arg(args, "-odefault_permissions,fsname=appfs,subtype=appfsd,use_ino,kernel_cache,entry_timeout=0,attr_timeout=0,big_writes,intr,hard_remove"); if (getuid() == 0) { fuse_opt_parse(args, NULL, NULL, NULL); fuse_opt_add_arg(args, "-oallow_other"); } while ((ch = getopt(argc, argv, "dfshvo:")) != -1) { switch (ch) { case 'v': /* Ignored */ break; case 'o': optstr_next = optstr = optstr_s = strdup(optarg); while (1) { optstr = optstr_next; if (!optstr) { |
︙ | ︙ | |||
2043 2044 2045 2046 2047 2048 2049 | fuse_opt_parse(args, NULL, NULL, NULL); fuse_opt_add_arg(args, fake_arg); break; case 'h': appfs_print_help(stdout); | | | 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 | fuse_opt_parse(args, NULL, NULL, NULL); fuse_opt_add_arg(args, fake_arg); break; case 'h': appfs_print_help(stdout); return(-1); case ':': case '?': default: appfs_print_help(stderr); return(1); } |
︙ | ︙ | |||
2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 | argv[0] = argv0; /** ** Perform the argument parsing **/ aop_ret = appfs_opt_parse(argc, argv, &args); if (aop_ret != 0) { return(aop_ret); } /* * Create a Tcl interpreter just to verify that things are in working * order before we become a daemon. */ | > > > > | 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 | argv[0] = argv0; /** ** Perform the argument parsing **/ aop_ret = appfs_opt_parse(argc, argv, &args); if (aop_ret != 0) { if (aop_ret < 0) { return(0); } return(aop_ret); } /* * Create a Tcl interpreter just to verify that things are in working * order before we become a daemon. */ |
︙ | ︙ |