Bumped to version 0.71.7
This commit is contained in:
parent
c1dc37321d
commit
a99092c5d9
@ -1,7 +1,10 @@
|
|||||||
$Id$
|
$Id$
|
||||||
|
|
||||||
|
|
||||||
v0.71.6 02-Sep-2005
|
v0.71.7 12-Sep-2005
|
||||||
|
|
||||||
|
|
||||||
|
v0.71.6 02-Sep-2005 - 12-Sep-2005
|
||||||
|
|
||||||
upgrade:
|
upgrade:
|
||||||
In mbsetup menu 8.2 remove the Italian language.
|
In mbsetup menu 8.2 remove the Italian language.
|
||||||
|
8
TODO
8
TODO
@ -1,6 +1,6 @@
|
|||||||
$Id$
|
$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
|
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?).
|
N: Someday make retoss from bad possible (volonteers?).
|
||||||
|
|
||||||
mbcico:
|
mbcico:
|
||||||
L: Implement binkp option ND.
|
N: Implement binkp option NR.
|
||||||
|
|
||||||
N: When answering a binkp session, do not send m_opt for compression
|
L: Implement binkp option ND and NDA.
|
||||||
until we know who is on the other side so we can really block single
|
|
||||||
nodes.
|
|
||||||
|
|
||||||
mbnntp:
|
mbnntp:
|
||||||
U: fetched mail doesn't get the status Rcvd if it was for the user.
|
U: fetched mail doesn't get the status Rcvd if it was for the user.
|
||||||
|
2
configure
vendored
2
configure
vendored
@ -1305,7 +1305,7 @@ SUBDIRS="lib mbcico mbfido mbmon mbsebbs mbutils mbnntp mbtask mbsetup unix lang
|
|||||||
PACKAGE="mbsebbs"
|
PACKAGE="mbsebbs"
|
||||||
MAJOR="0"
|
MAJOR="0"
|
||||||
MINOR="71"
|
MINOR="71"
|
||||||
REVISION="6"
|
REVISION="7"
|
||||||
VERSION="$MAJOR.$MINOR.$REVISION"
|
VERSION="$MAJOR.$MINOR.$REVISION"
|
||||||
COPYRIGHT="Copyright (C) 1997-2005 Michiel Broek, All Rights Reserved"
|
COPYRIGHT="Copyright (C) 1997-2005 Michiel Broek, All Rights Reserved"
|
||||||
SHORTRIGHT="Copyright (C) 1997-2005 M. Broek"
|
SHORTRIGHT="Copyright (C) 1997-2005 M. Broek"
|
||||||
|
@ -13,7 +13,7 @@ dnl
|
|||||||
PACKAGE="mbsebbs"
|
PACKAGE="mbsebbs"
|
||||||
MAJOR="0"
|
MAJOR="0"
|
||||||
MINOR="71"
|
MINOR="71"
|
||||||
REVISION="6"
|
REVISION="7"
|
||||||
VERSION="$MAJOR.$MINOR.$REVISION"
|
VERSION="$MAJOR.$MINOR.$REVISION"
|
||||||
COPYRIGHT="Copyright (C) 1997-2005 Michiel Broek, All Rights Reserved"
|
COPYRIGHT="Copyright (C) 1997-2005 Michiel Broek, All Rights Reserved"
|
||||||
SHORTRIGHT="Copyright (C) 1997-2005 M. Broek"
|
SHORTRIGHT="Copyright (C) 1997-2005 M. Broek"
|
||||||
|
@ -1235,7 +1235,7 @@ TrType binkp_receiver(void)
|
|||||||
return Failure;
|
return Failure;
|
||||||
else
|
else
|
||||||
return Ok;
|
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");
|
Syslog('+', "Binkp: partial file present, resync");
|
||||||
rc = binkp_send_command(MM_GET, "%s %ld %ld %ld", bp.rname, bp.rsize, bp.rtime, bp.rxbytes);
|
rc = binkp_send_command(MM_GET, "%s %ld %ld %ld", bp.rname, bp.rsize, bp.rtime, bp.rxbytes);
|
||||||
bp.RxState = RxWaitF;
|
bp.RxState = RxWaitF;
|
||||||
|
Reference in New Issue
Block a user