diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-02-02 08:23:24 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-02-02 13:08:26 +0100 |
commit | 8d379008283415a9895ea9b0f9acc262f5859a8d (patch) | |
tree | 6f3fef99cf079142f6debe19e7e0e4322948fc96 /source4/libcli | |
parent | ea7ea27f2f5d729629cf326424ea8b1123b9fc6e (diff) | |
download | samba-8d379008283415a9895ea9b0f9acc262f5859a8d.tar.gz samba-8d379008283415a9895ea9b0f9acc262f5859a8d.tar.bz2 samba-8d379008283415a9895ea9b0f9acc262f5859a8d.zip |
s4:libcli/clilist.c: s/private/private_data
metze
Diffstat (limited to 'source4/libcli')
-rw-r--r-- | source4/libcli/clilist.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/libcli/clilist.c b/source4/libcli/clilist.c index 5d43606c61..65ee0a8303 100644 --- a/source4/libcli/clilist.c +++ b/source4/libcli/clilist.c @@ -73,9 +73,9 @@ static bool interpret_long_filename(enum smb_search_data_level level, } /* callback function used for trans2 search */ -static bool smbcli_list_new_callback(void *private, const union smb_search_data *file) +static bool smbcli_list_new_callback(void *private_data, const union smb_search_data *file) { - struct search_private *state = (struct search_private*) private; + struct search_private *state = (struct search_private*) private_data; struct clilist_file_info *tdl; /* add file info to the dirlist pool */ @@ -231,9 +231,9 @@ static bool interpret_short_filename(enum smb_search_data_level level, } /* callback function used for smb_search */ -static bool smbcli_list_old_callback(void *private, const union smb_search_data *file) +static bool smbcli_list_old_callback(void *private_data, const union smb_search_data *file) { - struct search_private *state = (struct search_private*) private; + struct search_private *state = (struct search_private*) private_data; struct clilist_file_info *tdl; /* add file info to the dirlist pool */ |