Bumped to version 0.71.7

This commit is contained in:
Michiel Broek
2005-09-12 17:05:41 +00:00
parent c1dc37321d
commit a99092c5d9
5 changed files with 10 additions and 9 deletions

View File

@@ -1235,7 +1235,7 @@ TrType binkp_receiver(void)
return Failure;
else
return Ok;
} else if ((bp.rxbytes < bp.rsize) && (bp.roffs == 0) && bp.rxbytes) {
} else if ((bp.rxbytes < bp.rsize) && ((bp.roffs == 0) || (bp.roffs == -1)) && bp.rxbytes) {
Syslog('+', "Binkp: partial file present, resync");
rc = binkp_send_command(MM_GET, "%s %ld %ld %ld", bp.rname, bp.rsize, bp.rtime, bp.rxbytes);
bp.RxState = RxWaitF;