summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2003-03-15 07:16:32 +0000
committerAndrew Bartlett <abartlet@samba.org>2003-03-15 07:16:32 +0000
commitd8549b0360b86f151a8cd221838d005e083bfba8 (patch)
tree0e8e6ec0fd5d4065d2fc9ea553fdfeb1e91397a6 /source3
parent3b5bc93e9db4df6ded2eef7b32bda74328b04811 (diff)
downloadsamba-d8549b0360b86f151a8cd221838d005e083bfba8.tar.gz
samba-d8549b0360b86f151a8cd221838d005e083bfba8.tar.bz2
samba-d8549b0360b86f151a8cd221838d005e083bfba8.zip
signed/unsigned fix
(This used to be commit f6bcfa59447700e0ccfc069d0228019a9bdca9d2)
Diffstat (limited to 'source3')
-rw-r--r--source3/include/client.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/client.h b/source3/include/client.h
index a3efda4918..0ea793de68 100644
--- a/source3/include/client.h
+++ b/source3/include/client.h
@@ -110,8 +110,8 @@ struct cli_state {
int readbraw_supported;
int writebraw_supported;
int timeout; /* in milliseconds. */
- int max_xmit;
- int max_mux;
+ size_t max_xmit;
+ size_t max_mux;
char *outbuf;
char *inbuf;
unsigned int bufsize;