diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-03-15 07:16:32 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-03-15 07:16:32 +0000 |
commit | d8549b0360b86f151a8cd221838d005e083bfba8 (patch) | |
tree | 0e8e6ec0fd5d4065d2fc9ea553fdfeb1e91397a6 /source3 | |
parent | 3b5bc93e9db4df6ded2eef7b32bda74328b04811 (diff) | |
download | samba-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.h | 4 |
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; |