diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-02-02 08:21:17 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-02-02 13:08:25 +0100 |
commit | 7db458a56c9296c96c65f903a75453ac635a42c8 (patch) | |
tree | 76195182eb754c2e7618ffb51f13652f0451f4a4 /source4 | |
parent | 735af62105c563f9ee2ffd8bc21e914499d5ee76 (diff) | |
download | samba-7db458a56c9296c96c65f903a75453ac635a42c8.tar.gz samba-7db458a56c9296c96c65f903a75453ac635a42c8.tar.xz samba-7db458a56c9296c96c65f903a75453ac635a42c8.zip |
s4:lib/socket: s/private/private_data
metze
Diffstat (limited to 'source4')
-rw-r--r-- | source4/lib/socket/connect.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/lib/socket/connect.c b/source4/lib/socket/connect.c index be15aa987bb..b943de8c144 100644 --- a/source4/lib/socket/connect.c +++ b/source4/lib/socket/connect.c @@ -36,7 +36,7 @@ struct connect_state { static void socket_connect_handler(struct tevent_context *ev, struct tevent_fd *fde, - uint16_t flags, void *private); + uint16_t flags, void *private_data); /* call the real socket_connect() call, and setup event handler @@ -118,10 +118,10 @@ struct composite_context *socket_connect_send(struct socket_context *sock, */ static void socket_connect_handler(struct tevent_context *ev, struct tevent_fd *fde, - uint16_t flags, void *private) + uint16_t flags, void *private_data) { struct composite_context *result = - talloc_get_type(private, struct composite_context); + talloc_get_type(private_data, struct composite_context); struct connect_state *state = talloc_get_type(result->private_data, struct connect_state); |