diff --git a/ChangeLog b/ChangeLog index b0b104fd..3ad5f577 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,10 @@ $Id$ -v0.71.6 02-Sep-2005 +v0.71.7 12-Sep-2005 + + +v0.71.6 02-Sep-2005 - 12-Sep-2005 upgrade: In mbsetup menu 8.2 remove the Italian language. diff --git a/TODO b/TODO index 217d154e..68368c50 100644 --- a/TODO +++ b/TODO @@ -1,6 +1,6 @@ $Id$ - MBSE BBS V0.71.6 TODO list. + MBSE BBS V0.71.7 TODO list. --------------------------- These are a list of things that must be implemented one way or @@ -93,11 +93,9 @@ mbfido: N: Someday make retoss from bad possible (volonteers?). mbcico: - L: Implement binkp option ND. + N: Implement binkp option NR. - N: When answering a binkp session, do not send m_opt for compression - until we know who is on the other side so we can really block single - nodes. + L: Implement binkp option ND and NDA. mbnntp: U: fetched mail doesn't get the status Rcvd if it was for the user. diff --git a/configure b/configure index cfa65f52..0ec3a3c4 100755 --- a/configure +++ b/configure @@ -1305,7 +1305,7 @@ SUBDIRS="lib mbcico mbfido mbmon mbsebbs mbutils mbnntp mbtask mbsetup unix lang PACKAGE="mbsebbs" MAJOR="0" MINOR="71" -REVISION="6" +REVISION="7" VERSION="$MAJOR.$MINOR.$REVISION" COPYRIGHT="Copyright (C) 1997-2005 Michiel Broek, All Rights Reserved" SHORTRIGHT="Copyright (C) 1997-2005 M. Broek" diff --git a/configure.in b/configure.in index a43ce2b2..e77688e7 100644 --- a/configure.in +++ b/configure.in @@ -13,7 +13,7 @@ dnl PACKAGE="mbsebbs" MAJOR="0" MINOR="71" -REVISION="6" +REVISION="7" VERSION="$MAJOR.$MINOR.$REVISION" COPYRIGHT="Copyright (C) 1997-2005 Michiel Broek, All Rights Reserved" SHORTRIGHT="Copyright (C) 1997-2005 M. Broek" diff --git a/mbcico/binkp.c b/mbcico/binkp.c index fae8b6a4..160f438a 100644 --- a/mbcico/binkp.c +++ b/mbcico/binkp.c @@ -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;