summaryrefslogtreecommitdiff
path: root/source4/ntvfs/ntvfs.h
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-02-02 08:29:13 +0100
committerStefan Metzmacher <metze@samba.org>2009-02-02 13:08:30 +0100
commit50ad5239fd13fcec2b18eaa2ced55fd0e1b00a65 (patch)
tree6311bf5bdc67680d63c2e7fcee65b0b9bfbd76f9 /source4/ntvfs/ntvfs.h
parentc463bc127c911dcc3177e208931819ffc2f4fadb (diff)
downloadsamba-50ad5239fd13fcec2b18eaa2ced55fd0e1b00a65.tar.gz
samba-50ad5239fd13fcec2b18eaa2ced55fd0e1b00a65.tar.bz2
samba-50ad5239fd13fcec2b18eaa2ced55fd0e1b00a65.zip
s4:ntvfs: s/private/private_data
metze
Diffstat (limited to 'source4/ntvfs/ntvfs.h')
-rw-r--r--source4/ntvfs/ntvfs.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source4/ntvfs/ntvfs.h b/source4/ntvfs/ntvfs.h
index 5e86030efa..b62595967f 100644
--- a/source4/ntvfs/ntvfs.h
+++ b/source4/ntvfs/ntvfs.h
@@ -55,7 +55,7 @@ struct ntvfs_ops {
/* async_setup - called when a backend is processing a async request */
NTSTATUS (*async_setup)(struct ntvfs_module_context *ntvfs,
struct ntvfs_request *req,
- void *private);
+ void *private_data);
/* filesystem operations */
NTSTATUS (*fsinfo)(struct ntvfs_module_context *ntvfs,
@@ -94,12 +94,12 @@ struct ntvfs_ops {
/* directory search */
NTSTATUS (*search_first)(struct ntvfs_module_context *ntvfs,
struct ntvfs_request *req,
- union smb_search_first *io, void *private,
- bool (*callback)(void *private, const union smb_search_data *file));
+ union smb_search_first *io, void *private_data,
+ bool (*callback)(void *private_data, const union smb_search_data *file));
NTSTATUS (*search_next)(struct ntvfs_module_context *ntvfs,
struct ntvfs_request *req,
- union smb_search_next *io, void *private,
- bool (*callback)(void *private, const union smb_search_data *file));
+ union smb_search_next *io, void *private_data,
+ bool (*callback)(void *private_data, const union smb_search_data *file));
NTSTATUS (*search_close)(struct ntvfs_module_context *ntvfs,
struct ntvfs_request *req,
union smb_search_close *io);