diff --git a/ChangeLog b/ChangeLog index 845a3bb1..7e58649e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/configure b/configure index eb5a34b6..c4598795 100755 --- a/configure +++ b/configure @@ -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" diff --git a/configure.ac b/configure.ac index 76d2a0ae..f07a35ca 100644 --- a/configure.ac +++ b/configure.ac @@ -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" diff --git a/lib/strutil.c b/lib/strutil.c index 95c2da8b..c03602a4 100644 --- a/lib/strutil.c +++ b/lib/strutil.c @@ -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; }