Differences From Artifact [7d73287993]:
- File src/http_transport.c — part of check-in [bbf257dc9e] at 2011-02-27 21:03:02 on branch private-sync — Fix issues with file-to-file sync. Allow --localauth to enable --private syncing. (user: drh size: 13505) [more...]
To Artifact [31ed9be8b1]:
- File src/http_transport.c — part of check-in [085b6a1bbb] at 2011-04-19 20:30:31 on branch trunk — Fix a copy of minor display problems out the output of "fossil push". (user: drh size: 13533) [more...]
| ︙ | |||
430 431 432 433 434 435 436 437 438 439 440 441 442 443 | 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 | + |
transport.nAlloc = transport.nUsed + N;
pNew = fossil_realloc(transport.pBuf, transport.nAlloc);
transport.pBuf = pNew;
}
if( N>0 ){
i = transport_fetch(&transport.pBuf[transport.nUsed], N);
if( i>0 ){
transport.nRcvd += i;
transport.nUsed += i;
}
}
}
/*
** Fetch a single line of input where a line is all text up to the next
|
| ︙ |