From ff1e14e4fb2674cd5dba11ff7e658317dcc8173a Mon Sep 17 00:00:00 2001 From: szaka Date: Thu, 10 Jul 2008 22:30:35 +0000 Subject: [PATCH] open() API documentation update (Nikolaus Rath) --- include/fuse-lite/fuse.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/fuse-lite/fuse.h b/include/fuse-lite/fuse.h index 08d317da..8ea787a0 100644 --- a/include/fuse-lite/fuse.h +++ b/include/fuse-lite/fuse.h @@ -125,7 +125,8 @@ struct fuse_operations { /** File open operation * * No creation, or truncation flags (O_CREAT, O_EXCL, O_TRUNC) - * will be passed to open(). Open should check if the operation + * will be passed to open(). Unless the 'default_permissions' + * mount option is given, open should check if the operation * is permitted for the given flags. Optionally open may also * return an arbitrary filehandle in the fuse_file_info structure, * which will be passed to all file operations.