summaryrefslogtreecommitdiff
path: root/source4/ntvfs/posix/pvfs_aio.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-02-02 08:34:16 +0100
committerStefan Metzmacher <metze@samba.org>2009-02-02 13:08:33 +0100
commit2110ef3c5d4b2085310f706c62e6bf11299dc2eb (patch)
tree07a1bedb4693ba473c88ad4aabdaf5a78b81e689 /source4/ntvfs/posix/pvfs_aio.c
parent7ee87c339bc328f89d08afc0e5c9e095ceb1f746 (diff)
downloadsamba-2110ef3c5d4b2085310f706c62e6bf11299dc2eb.tar.gz
samba-2110ef3c5d4b2085310f706c62e6bf11299dc2eb.tar.bz2
samba-2110ef3c5d4b2085310f706c62e6bf11299dc2eb.zip
s4:ntvfs/posix: s/private/private_data
metze
Diffstat (limited to 'source4/ntvfs/posix/pvfs_aio.c')
-rw-r--r--source4/ntvfs/posix/pvfs_aio.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/ntvfs/posix/pvfs_aio.c b/source4/ntvfs/posix/pvfs_aio.c
index 7a090e214a..56566e3592 100644
--- a/source4/ntvfs/posix/pvfs_aio.c
+++ b/source4/ntvfs/posix/pvfs_aio.c
@@ -42,9 +42,9 @@ struct pvfs_aio_write_state {
called when an aio read has finished
*/
static void pvfs_aio_read_handler(struct tevent_context *ev, struct tevent_aio *ae,
- int ret, void *private)
+ int ret, void *private_data)
{
- struct pvfs_aio_read_state *state = talloc_get_type(private,
+ struct pvfs_aio_read_state *state = talloc_get_type(private_data,
struct pvfs_aio_read_state);
struct pvfs_file *f = state->f;
union smb_read *rd = state->rd;
@@ -107,9 +107,9 @@ NTSTATUS pvfs_aio_pread(struct ntvfs_request *req, union smb_read *rd,
called when an aio write has finished
*/
static void pvfs_aio_write_handler(struct tevent_context *ev, struct tevent_aio *ae,
- int ret, void *private)
+ int ret, void *private_data)
{
- struct pvfs_aio_write_state *state = talloc_get_type(private,
+ struct pvfs_aio_write_state *state = talloc_get_type(private_data,
struct pvfs_aio_write_state);
struct pvfs_file *f = state->f;
union smb_write *wr = state->wr;