1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

r2373: Fix typo.

Jeremy.
(This used to be commit b1033fc77c)
This commit is contained in:
Jeremy Allison 2004-09-17 00:53:17 +00:00 committed by Gerald (Jerry) Carter
parent 41b3720713
commit 40a89ce884

View File

@ -329,10 +329,10 @@ ssize_t cli_write(struct cli_state *cli,
int block = cli->max_xmit - (smb_size+32);
int blocks = (size + (block-1)) / block;
if(cli->max_mux == 0) {
mpx = 1;
} else {
if(cli->max_mux > 1) {
mpx = cli->max_mux-1;
} else {
mpx = 1;
}
while (received < blocks) {