From 19a0ee7bd99fa663c2802b59cd0d8c89b0c371c5 Mon Sep 17 00:00:00 2001 From: Michiel Broek Date: Wed, 26 Jan 2011 22:41:52 +0100 Subject: [PATCH] Release 0.95.10 by Vince Coen. Some spelling errors fixed. In mbout check for full path --- ChangeLog | 12 ++++++++++++ configure | 2 +- configure.ac | 2 +- mbcico/mbout.c | 5 +++-- mbsetup/ledit.c | 5 ++--- mbsetup/m_global.c | 7 +++---- 6 files changed, 22 insertions(+), 11 deletions(-) diff --git a/ChangeLog b/ChangeLog index ab5937f9..8d475a94 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +v0.95.10 26-Aug-2010 (released by Vince Coen). + + mbsetup: + Minor cosmetic errors eg, inormation (information) etc in site + docs & update copyright dates for m_global.c & ledit.c. + + mbout: + Check that when using file attach mode that path is absolute + eg, starts with '/' ('~/ is changed to '/opt/mbse/ etc) + + v0.95.7/8 12-Jul-2010 (released by Vince Coen). general: @@ -7,6 +18,7 @@ v0.95.7/8 12-Jul-2010 (released by Vince Coen). NOTE: I am incrementing the version minor number for every build as mbse does not use build number. + v0.95.6 04-Oct-2009 general: diff --git a/configure b/configure index c029a393..6747140a 100755 --- a/configure +++ b/configure @@ -2274,7 +2274,7 @@ SUBDIRS="lib mbcico mbfido mbmon mbsebbs mbutils mbnntp mbtask mbsetup unix lang PACKAGE="mbsebbs" MAJOR="0" MINOR="95" -REVISION="8" +REVISION="10" VERSION="$MAJOR.$MINOR.$REVISION" COPYRIGHT="Copyright (C) 1997-2010 Michiel Broek, All Rights Reserved" SHORTRIGHT="Copyright (C) 1997-2010 M. Broek" diff --git a/configure.ac b/configure.ac index d7f18f96..2a2ee42a 100644 --- a/configure.ac +++ b/configure.ac @@ -12,7 +12,7 @@ AC_SUBST(SUBDIRS) PACKAGE="mbsebbs" MAJOR="0" MINOR="95" -REVISION="8" +REVISION="10" VERSION="$MAJOR.$MINOR.$REVISION" COPYRIGHT="Copyright (C) 1997-2010 Michiel Broek, All Rights Reserved" SHORTRIGHT="Copyright (C) 1997-2010 M. Broek" diff --git a/mbcico/mbout.c b/mbcico/mbout.c index ac6c8fed..54d708d1 100644 --- a/mbcico/mbout.c +++ b/mbcico/mbout.c @@ -1,10 +1,9 @@ /***************************************************************************** * - * $Id: mbout.c,v 1.29 2007/09/02 11:17:31 mbse Exp $ * Purpose: MBSE BBS Outbound Manager * ***************************************************************************** - * Copyright (C) 1997-2007 + * Copyright (C) 1997-2010 * * Michiel Broek FIDO: 2:280/2802 * Beekmansbos 10 @@ -326,6 +325,8 @@ int main(int argc, char *argv[]) if (argv[4][0] == '-') Fatal((char *)"Invalid filename given", MBERR_COMMANDLINE); + if (argv[4][0] != '/') + Fatal((char *)"Must use absolute path/filename (or ~/path/filename)", MBERR_COMMANDLINE); if (file_exist(argv[4], R_OK) != 0) Fatal((char *)"File doesn't exist", MBERR_COMMANDLINE); diff --git a/mbsetup/ledit.c b/mbsetup/ledit.c index 9774457a..333af374 100644 --- a/mbsetup/ledit.c +++ b/mbsetup/ledit.c @@ -1,10 +1,9 @@ /***************************************************************************** * - * $Id: ledit.c,v 1.63 2008/02/17 16:10:18 mbse Exp $ * Purpose ...............: Line Editor * ***************************************************************************** - * Copyright (C) 1997-2008 + * Copyright (C) 1997-2010 * * Michiel Broek FIDO: 2:280/2802 * Beekmansbos 10 @@ -105,7 +104,7 @@ int check_free(void) Syslog('+', "The BBS is closed"); return TRUE; } else { - errmsg("Cannon continue, failed to close the bbs"); + errmsg("Cannot continue, failed to close the bbs"); return FALSE; } } diff --git a/mbsetup/m_global.c b/mbsetup/m_global.c index 9fdf5258..660b0b1e 100644 --- a/mbsetup/m_global.c +++ b/mbsetup/m_global.c @@ -1,10 +1,9 @@ /**************************************************************************** * - * $Id: m_global.c,v 1.92 2008/12/28 12:20:14 mbse Exp $ * Purpose ...............: Global Setup Program * ***************************************************************************** - * Copyright (C) 1997-2008 + * Copyright (C) 1997-2010 * * Michiel Broek FIDO: 2:280/2802 * Beekmansbos 10 @@ -1725,8 +1724,8 @@ int global_doc(FILE *fp, FILE *toc, int page) return page; page = newpage(fp, page); - addtoc(fp, toc, 0, 0, page, (char *)"System inormation"); - addtoc(fp, toc, 0, 1, page, (char *)"System inormation"); + addtoc(fp, toc, 0, 0, page, (char *)"System information"); + addtoc(fp, toc, 0, 1, page, (char *)"System information"); wp = open_webdoc((char *)"global.html", (char *)"Global Configuration", NULL); fprintf(wp, "Main\n");