1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00

r2373: Fix typo.

Jeremy.
This commit is contained in:
Jeremy Allison 2004-09-17 00:53:17 +00:00 committed by Gerald (Jerry) Carter
parent 330025d1a6
commit b1033fc77c

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) {