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

@ -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.

8
TODO
View File

@ -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.

2
configure vendored
View File

@ -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"

View File

@ -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"

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;