v1.0.7.8 -- Fix reading of origin Net when receiving Type 2+ packets from
Points.
This commit is contained in:
parent
910bc67d68
commit
3ebe5590b5
@ -1,3 +1,11 @@
|
|||||||
|
v1.0.7.8 07-Sep-2018 - Andrew Leary
|
||||||
|
|
||||||
|
1. Fixed reading the origin Net from incoming Type 2+
|
||||||
|
packets from Points. Thanks to Deon George for the report
|
||||||
|
and a patch.
|
||||||
|
|
||||||
|
2. Fixed a minor cosmetic bug in mbmon.
|
||||||
|
|
||||||
v1.0.7.7 05-Jun-2018 - Andrew Leary
|
v1.0.7.7 05-Jun-2018 - Andrew Leary
|
||||||
|
|
||||||
1. Added support for creating the DORINFO1.DEF dropfile, in
|
1. Added support for creating the DORINFO1.DEF dropfile, in
|
||||||
|
2
configure
vendored
2
configure
vendored
@ -2309,7 +2309,7 @@ SUBDIRS="lib mbcico mbfido mbmon mbsebbs mbutils mbnntp mbtask mbsetup unix lang
|
|||||||
PACKAGE="mbsebbs"
|
PACKAGE="mbsebbs"
|
||||||
MAJOR="1"
|
MAJOR="1"
|
||||||
MINOR="0"
|
MINOR="0"
|
||||||
REVISION="7.7"
|
REVISION="7.8"
|
||||||
VERSION="$MAJOR.$MINOR.$REVISION"
|
VERSION="$MAJOR.$MINOR.$REVISION"
|
||||||
COPYRIGHT="Copyright (C) 1997-2018 MBSE Development Team, All Rights Reserved"
|
COPYRIGHT="Copyright (C) 1997-2018 MBSE Development Team, All Rights Reserved"
|
||||||
SHORTRIGHT="Copyright (C) 1997-2018 MBSE DevTm"
|
SHORTRIGHT="Copyright (C) 1997-2018 MBSE DevTm"
|
||||||
|
@ -12,7 +12,7 @@ AC_SUBST(SUBDIRS)
|
|||||||
PACKAGE="mbsebbs"
|
PACKAGE="mbsebbs"
|
||||||
MAJOR="1"
|
MAJOR="1"
|
||||||
MINOR="0"
|
MINOR="0"
|
||||||
REVISION="7.7"
|
REVISION="7.8"
|
||||||
VERSION="$MAJOR.$MINOR.$REVISION"
|
VERSION="$MAJOR.$MINOR.$REVISION"
|
||||||
COPYRIGHT="Copyright (C) 1997-2018 MBSE Development Team, All Rights Reserved"
|
COPYRIGHT="Copyright (C) 1997-2018 MBSE Development Team, All Rights Reserved"
|
||||||
SHORTRIGHT="Copyright (C) 1997-2018 MBSE DevTm"
|
SHORTRIGHT="Copyright (C) 1997-2018 MBSE DevTm"
|
||||||
|
@ -111,6 +111,9 @@ int getheader(faddr *f, faddr *t, FILE *pkt, char *pname, int session)
|
|||||||
t->zone = buffer[0x30] + (buffer[0x31] << 8);
|
t->zone = buffer[0x30] + (buffer[0x31] << 8);
|
||||||
f->point = buffer[0x32] + (buffer[0x33] << 8);
|
f->point = buffer[0x32] + (buffer[0x33] << 8);
|
||||||
t->point = buffer[0x34] + (buffer[0x35] << 8);
|
t->point = buffer[0x34] + (buffer[0x35] << 8);
|
||||||
|
if (f->net == 65535) { /* Point packet - Get Net from auxNet */
|
||||||
|
f->net = buffer[0x26] + (buffer[0x27] << 8);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
/*
|
/*
|
||||||
* Stone age @%#$@
|
* Stone age @%#$@
|
||||||
|
@ -429,7 +429,7 @@ void soft_info(void)
|
|||||||
#if defined(__i386__)
|
#if defined(__i386__)
|
||||||
p = xstrcat(p, (char *)" i386)");
|
p = xstrcat(p, (char *)" i386)");
|
||||||
#elif defined(__x86_64__)
|
#elif defined(__x86_64__)
|
||||||
p = xstrcat(p, (char *)" x86-64");
|
p = xstrcat(p, (char *)" x86-64)");
|
||||||
#elif defined(__PPC__) || defined(__ppc__)
|
#elif defined(__PPC__) || defined(__ppc__)
|
||||||
p = xstrcat(p, (char *)" PPC)");
|
p = xstrcat(p, (char *)" PPC)");
|
||||||
#elif defined(__sparc__)
|
#elif defined(__sparc__)
|
||||||
|
Reference in New Issue
Block a user