summaryrefslogtreecommitdiff
path: root/source4/torture/raw/search.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-02-02 08:44:44 +0100
committerStefan Metzmacher <metze@samba.org>2009-02-02 13:08:38 +0100
commitab7f003aad6d16103c72ec3330836340e83a230a (patch)
tree0bb9fdeb259e4fb2a8c0b9f3c0c033a0799cc0f1 /source4/torture/raw/search.c
parent35f7cee25db3f4a3db9bfa6d7a12f1d9d6698ca0 (diff)
downloadsamba-ab7f003aad6d16103c72ec3330836340e83a230a.tar.gz
samba-ab7f003aad6d16103c72ec3330836340e83a230a.tar.bz2
samba-ab7f003aad6d16103c72ec3330836340e83a230a.zip
s4:torture: s/private/private_data
metze
Diffstat (limited to 'source4/torture/raw/search.c')
-rw-r--r--source4/torture/raw/search.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/torture/raw/search.c b/source4/torture/raw/search.c
index 2a6aef20b5..8a3168dcc4 100644
--- a/source4/torture/raw/search.c
+++ b/source4/torture/raw/search.c
@@ -31,9 +31,9 @@
/*
callback function for single_search
*/
-static bool single_search_callback(void *private, const union smb_search_data *file)
+static bool single_search_callback(void *private_data, const union smb_search_data *file)
{
- union smb_search_data *data = (union smb_search_data *)private;
+ union smb_search_data *data = (union smb_search_data *)private_data;
*data = *file;
@@ -510,9 +510,9 @@ struct multiple_result {
/*
callback function for multiple_search
*/
-static bool multiple_search_callback(void *private, const union smb_search_data *file)
+static bool multiple_search_callback(void *private_data, const union smb_search_data *file)
{
- struct multiple_result *data = (struct multiple_result *)private;
+ struct multiple_result *data = (struct multiple_result *)private_data;
data->count++;