summaryrefslogtreecommitdiff
path: root/source3/include/async_smb.h
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2008-12-19 17:44:32 +0100
committerVolker Lendecke <vl@samba.org>2008-12-19 17:47:30 +0100
commit1f04d07db0d53630d400ed35cecf7c66d3bb491c (patch)
tree0f1e3a2c8e7fad7f5ffd726275ff02f5a3043ab1 /source3/include/async_smb.h
parent398ef0fb855b3b2d6e55ae26304589fd89110628 (diff)
downloadsamba-1f04d07db0d53630d400ed35cecf7c66d3bb491c.tar.gz
samba-1f04d07db0d53630d400ed35cecf7c66d3bb491c.tar.bz2
samba-1f04d07db0d53630d400ed35cecf7c66d3bb491c.zip
Convert cli_request->outbuf to uint8_t
Diffstat (limited to 'source3/include/async_smb.h')
-rw-r--r--source3/include/async_smb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/async_smb.h b/source3/include/async_smb.h
index f8f94aa4c9..ef53ee2163 100644
--- a/source3/include/async_smb.h
+++ b/source3/include/async_smb.h
@@ -66,7 +66,7 @@ struct cli_request {
/**
* The bytes we have to ship to the server
*/
- char *outbuf;
+ uint8_t *outbuf;
/**
* How much from "outbuf" did we already send
@@ -126,7 +126,7 @@ bool cli_chain_cork(struct cli_state *cli, struct event_context *ev,
size_t size_hint);
void cli_chain_uncork(struct cli_state *cli);
bool cli_in_chain(struct cli_state *cli);
-bool smb_splice_chain(char **poutbuf, uint8_t smb_command,
+bool smb_splice_chain(uint8_t **poutbuf, uint8_t smb_command,
uint8_t wct, const uint16_t *vwv,
size_t bytes_alignment,
uint32_t num_bytes, const uint8_t *bytes);