v1.0.7.11 -- Fix truncated tearline under certain combinations of OS and CPU.
This commit is contained in:
parent
73c3ba21cb
commit
0ab1656370
@ -1,3 +1,8 @@
|
|||||||
|
v1.0.7.11 09-Oct-2018 - Andrew Leary
|
||||||
|
|
||||||
|
1. Fixed a bug that could truncate the tearline under certain
|
||||||
|
combinations of OS and architecture.
|
||||||
|
|
||||||
v1.0.7.10 28-Sep-2018 - Andrew Leary
|
v1.0.7.10 28-Sep-2018 - Andrew Leary
|
||||||
|
|
||||||
1. Updated the configuration file for using joe as the BBS
|
1. Updated the configuration file for using joe as the BBS
|
||||||
|
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.10"
|
REVISION="7.11"
|
||||||
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.10"
|
REVISION="7.11"
|
||||||
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"
|
||||||
|
@ -408,9 +408,9 @@ char *OsCPU()
|
|||||||
*/
|
*/
|
||||||
char *TearLine()
|
char *TearLine()
|
||||||
{
|
{
|
||||||
static char tearline[41];
|
static char tearline[45];
|
||||||
|
|
||||||
snprintf(tearline, 41, "--- MBSE BBS v%s (%s-%s)", VERSION, OsName(), OsCPU());
|
snprintf(tearline, 45, "--- MBSE BBS v%s (%s-%s)", VERSION, OsName(), OsCPU());
|
||||||
return tearline;
|
return tearline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user