diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-11-28 10:24:18 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-11-29 16:00:07 +0100 |
commit | 3453665bcb408e2961920d156353ae45402d682f (patch) | |
tree | 4d9ce7ade71ab99510c22e72caed906c41c23332 /libcli/smb | |
parent | c9ca3bb4921882634058ee203205aa72b30fb4a7 (diff) | |
download | samba-3453665bcb408e2961920d156353ae45402d682f.tar.gz samba-3453665bcb408e2961920d156353ae45402d682f.tar.bz2 samba-3453665bcb408e2961920d156353ae45402d682f.zip |
smbXcli: s/smb2cli_writev_done/smb2cli_req_writev_done
This is a better name and it matches smb1cli_req_writev_done
metze
Diffstat (limited to 'libcli/smb')
-rw-r--r-- | libcli/smb/smbXcli_base.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcli/smb/smbXcli_base.c b/libcli/smb/smbXcli_base.c index 43fbbf4e4d..d5ad1466ff 100644 --- a/libcli/smb/smbXcli_base.c +++ b/libcli/smb/smbXcli_base.c @@ -2266,7 +2266,7 @@ void smb2cli_req_set_notify_async(struct tevent_req *req) state->smb2.notify_async = true; } -static void smb2cli_writev_done(struct tevent_req *subreq); +static void smb2cli_req_writev_done(struct tevent_req *subreq); static NTSTATUS smb2cli_conn_dispatch_incoming(struct smbXcli_conn *conn, TALLOC_CTX *tmp_mem, uint8_t *inbuf); @@ -2430,7 +2430,7 @@ skip_credits: if (subreq == NULL) { return NT_STATUS_NO_MEMORY; } - tevent_req_set_callback(subreq, smb2cli_writev_done, reqs[0]); + tevent_req_set_callback(subreq, smb2cli_req_writev_done, reqs[0]); return NT_STATUS_OK; } @@ -2479,7 +2479,7 @@ struct tevent_req *smb2cli_req_send(TALLOC_CTX *mem_ctx, return req; } -static void smb2cli_writev_done(struct tevent_req *subreq) +static void smb2cli_req_writev_done(struct tevent_req *subreq) { struct tevent_req *req = tevent_req_callback_data(subreq, |