diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-03-17 23:04:03 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-03-17 23:04:03 +0000 |
commit | e88eab35bc03a2d108b27f2209ec4cfb395dcdba (patch) | |
tree | 8a0e5c5ca43634c8146982ad9eb63165c9ea07c3 /source3/include | |
parent | 83a580f49a3a7f5aff0aab3946faee0892239251 (diff) | |
download | samba-e88eab35bc03a2d108b27f2209ec4cfb395dcdba.tar.gz samba-e88eab35bc03a2d108b27f2209ec4cfb395dcdba.tar.bz2 samba-e88eab35bc03a2d108b27f2209ec4cfb395dcdba.zip |
Merge from HEAD:
signed/unsigned (mostly i counters)
a little bit of const.
Andrew Bartlett
(This used to be commit 50f0ca752e5058c4051f42a9337361373ba1f727)
Diffstat (limited to 'source3/include')
-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 3375bacb0f..28d6a8c330 100644 --- a/source3/include/client.h +++ b/source3/include/client.h @@ -109,8 +109,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; |