Release 0.95.10 by Vince Coen. Some spelling errors fixed. In mbout check for full path

This commit is contained in:
Michiel Broek 2011-01-26 22:41:52 +01:00
parent f806eb27db
commit 19a0ee7bd9
6 changed files with 22 additions and 11 deletions

View File

@ -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:

2
configure vendored
View File

@ -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"

View File

@ -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"

View File

@ -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);

View File

@ -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;
}
}

View File

@ -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, "<A HREF=\"index.html\">Main</A>\n");