v1.0.7.11 -- Fix truncated tearline under certain combinations of OS and CPU.

This commit is contained in:
Andrew Leary 2018-11-21 22:07:34 -05:00
parent 73c3ba21cb
commit 0ab1656370
4 changed files with 9 additions and 4 deletions

View File

@ -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
1. Updated the configuration file for using joe as the BBS

2
configure vendored
View File

@ -2309,7 +2309,7 @@ SUBDIRS="lib mbcico mbfido mbmon mbsebbs mbutils mbnntp mbtask mbsetup unix lang
PACKAGE="mbsebbs"
MAJOR="1"
MINOR="0"
REVISION="7.10"
REVISION="7.11"
VERSION="$MAJOR.$MINOR.$REVISION"
COPYRIGHT="Copyright (C) 1997-2018 MBSE Development Team, All Rights Reserved"
SHORTRIGHT="Copyright (C) 1997-2018 MBSE DevTm"

View File

@ -12,7 +12,7 @@ AC_SUBST(SUBDIRS)
PACKAGE="mbsebbs"
MAJOR="1"
MINOR="0"
REVISION="7.10"
REVISION="7.11"
VERSION="$MAJOR.$MINOR.$REVISION"
COPYRIGHT="Copyright (C) 1997-2018 MBSE Development Team, All Rights Reserved"
SHORTRIGHT="Copyright (C) 1997-2018 MBSE DevTm"

View File

@ -408,9 +408,9 @@ char *OsCPU()
*/
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;
}