summaryrefslogtreecommitdiff
path: root/nuttx/fs/nfs/nfs_proto.h
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-29 23:23:22 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-29 23:23:22 +0000
commitad70e05275b54d9d89a6709b3ec65dbdd3c02196 (patch)
tree7733ccc3e88ceeffe4afbe6d68b08759e19e9a44 /nuttx/fs/nfs/nfs_proto.h
parent17062a01dd51f6cc68114e04edbaae56bd2fe21e (diff)
downloadpx4-nuttx-ad70e05275b54d9d89a6709b3ec65dbdd3c02196.tar.gz
px4-nuttx-ad70e05275b54d9d89a6709b3ec65dbdd3c02196.tar.bz2
px4-nuttx-ad70e05275b54d9d89a6709b3ec65dbdd3c02196.zip
NFS update
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4785 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/fs/nfs/nfs_proto.h')
-rw-r--r--nuttx/fs/nfs/nfs_proto.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/nuttx/fs/nfs/nfs_proto.h b/nuttx/fs/nfs/nfs_proto.h
index dbbf5caee..0b5d1f653 100644
--- a/nuttx/fs/nfs/nfs_proto.h
+++ b/nuttx/fs/nfs/nfs_proto.h
@@ -542,12 +542,14 @@ struct file_handle
struct diropargs3
{
struct file_handle dir;
- char *name;
+ uint32_t length;
+ char name[64];
};
struct CREATE3args
{
struct diropargs3 where;
+ uint32_t create_mode;
struct nfsv3_sattr how;
};