diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2006-02-16 16:38:34 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2006-02-16 16:38:34 +0000 |
commit | 060914647bd9c8d24beeb2c1eda22e8767d9552a (patch) | |
tree | 45b305ab9e3b889ce8c4d490e49d568aff3827e3 | |
parent | c00d29374c8432a829e3bdefe13a613bd0e43067 (diff) | |
download | libfuse-060914647bd9c8d24beeb2c1eda22e8767d9552a.tar.gz |
fix help
-rw-r--r-- | lib/fuse.c | 21 |
1 files changed, 11 insertions, 10 deletions
@@ -1943,16 +1943,17 @@ static const struct fuse_opt fuse_lib_opts[] = { static void fuse_lib_help(void) { fprintf(stderr, - " -o hard_remove immediate removal (don't hide files)\n" - " -o use_ino let filesystem set inode numbers\n" - " -o readdir_ino try to fill in d_ino in readdir\n" - " -o direct_io use direct I/O\n" - " -o kernel_cache cache files in kernel\n" - " -o umask=M set file permissions (octal)\n" - " -o uid=N set file owner\n" - " -o gid=N set file group\n" - " -o entry_timeout=T cache timeout for names (1.0s)\n" - " -o negative_timeout=T cache timeout for deleted names (0.0s)\n" +" -o hard_remove immediate removal (don't hide files)\n" +" -o use_ino let filesystem set inode numbers\n" +" -o readdir_ino try to fill in d_ino in readdir\n" +" -o direct_io use direct I/O\n" +" -o kernel_cache cache files in kernel\n" +" -o [no]auto_cache enable caching based on modification times\n" +" -o umask=M set file permissions (octal)\n" +" -o uid=N set file owner\n" +" -o gid=N set file group\n" +" -o entry_timeout=T cache timeout for names (1.0s)\n" +" -o negative_timeout=T cache timeout for deleted names (0.0s)\n" " -o attr_timeout=T cache timeout for attributes (1.0s)\n" "\n"); } |