diff options
author | Paul Sladen | 2009-04-01 09:25:04 -0700 |
---|---|---|
committer | Matt Colyer | 2009-04-01 09:25:04 -0700 |
commit | 5db1ccc0676f47e404664a94d33f8212e4bbac9a (patch) | |
tree | 1a6211076bb42e9a699b9ee408133661efe027b1 /src | |
parent | d941dccaa77c2715bc652d7c48aeddcfca24e20d (diff) | |
download | ifuse-5db1ccc0676f47e404664a94d33f8212e4bbac9a.tar.gz ifuse-5db1ccc0676f47e404664a94d33f8212e4bbac9a.tar.bz2 |
restore --root and fix README
Diffstat (limited to 'src')
-rw-r--r-- | src/ifuse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ifuse.c b/src/ifuse.c index 5677cbc..fdb376f 100644 --- a/src/ifuse.c +++ b/src/ifuse.c @@ -324,7 +324,7 @@ static int ifuse_opt_proc(void *data, const char *arg, int key, struct fuse_args case FUSE_OPT_KEY_OPT: if (strcmp(arg, "allow_other") == 0 || strcmp(arg, "-d") == 0 || strcmp(arg, "-s") == 0) return 1; - else if (strcmp(arg, "--afc2") == 0) { + else if (strcmp(arg, "--root") == 0) { ifuse_oper.init = ifuse_init_jailbroken; return 0; } else |