Release 0.95.10 by Vince Coen. Some spelling errors fixed. In mbout check for full path
This commit is contained in:
parent
08c3bb459e
commit
30c6ce67a1
12
ChangeLog
12
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).
|
v0.95.7/8 12-Jul-2010 (released by Vince Coen).
|
||||||
|
|
||||||
general:
|
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
|
NOTE: I am incrementing the version minor number for every build as
|
||||||
mbse does not use build number.
|
mbse does not use build number.
|
||||||
|
|
||||||
|
|
||||||
v0.95.6 04-Oct-2009
|
v0.95.6 04-Oct-2009
|
||||||
|
|
||||||
general:
|
general:
|
||||||
|
2
configure
vendored
2
configure
vendored
@ -2274,7 +2274,7 @@ SUBDIRS="lib mbcico mbfido mbmon mbsebbs mbutils mbnntp mbtask mbsetup unix lang
|
|||||||
PACKAGE="mbsebbs"
|
PACKAGE="mbsebbs"
|
||||||
MAJOR="0"
|
MAJOR="0"
|
||||||
MINOR="95"
|
MINOR="95"
|
||||||
REVISION="8"
|
REVISION="10"
|
||||||
VERSION="$MAJOR.$MINOR.$REVISION"
|
VERSION="$MAJOR.$MINOR.$REVISION"
|
||||||
COPYRIGHT="Copyright (C) 1997-2010 Michiel Broek, All Rights Reserved"
|
COPYRIGHT="Copyright (C) 1997-2010 Michiel Broek, All Rights Reserved"
|
||||||
SHORTRIGHT="Copyright (C) 1997-2010 M. Broek"
|
SHORTRIGHT="Copyright (C) 1997-2010 M. Broek"
|
||||||
|
@ -12,7 +12,7 @@ AC_SUBST(SUBDIRS)
|
|||||||
PACKAGE="mbsebbs"
|
PACKAGE="mbsebbs"
|
||||||
MAJOR="0"
|
MAJOR="0"
|
||||||
MINOR="95"
|
MINOR="95"
|
||||||
REVISION="8"
|
REVISION="10"
|
||||||
VERSION="$MAJOR.$MINOR.$REVISION"
|
VERSION="$MAJOR.$MINOR.$REVISION"
|
||||||
COPYRIGHT="Copyright (C) 1997-2010 Michiel Broek, All Rights Reserved"
|
COPYRIGHT="Copyright (C) 1997-2010 Michiel Broek, All Rights Reserved"
|
||||||
SHORTRIGHT="Copyright (C) 1997-2010 M. Broek"
|
SHORTRIGHT="Copyright (C) 1997-2010 M. Broek"
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
/*****************************************************************************
|
/*****************************************************************************
|
||||||
*
|
*
|
||||||
* $Id: mbout.c,v 1.29 2007/09/02 11:17:31 mbse Exp $
|
|
||||||
* Purpose: MBSE BBS Outbound Manager
|
* Purpose: MBSE BBS Outbound Manager
|
||||||
*
|
*
|
||||||
*****************************************************************************
|
*****************************************************************************
|
||||||
* Copyright (C) 1997-2007
|
* Copyright (C) 1997-2010
|
||||||
*
|
*
|
||||||
* Michiel Broek FIDO: 2:280/2802
|
* Michiel Broek FIDO: 2:280/2802
|
||||||
* Beekmansbos 10
|
* Beekmansbos 10
|
||||||
@ -326,6 +325,8 @@ int main(int argc, char *argv[])
|
|||||||
|
|
||||||
if (argv[4][0] == '-')
|
if (argv[4][0] == '-')
|
||||||
Fatal((char *)"Invalid filename given", MBERR_COMMANDLINE);
|
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)
|
if (file_exist(argv[4], R_OK) != 0)
|
||||||
Fatal((char *)"File doesn't exist", MBERR_COMMANDLINE);
|
Fatal((char *)"File doesn't exist", MBERR_COMMANDLINE);
|
||||||
|
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
/*****************************************************************************
|
/*****************************************************************************
|
||||||
*
|
*
|
||||||
* $Id: ledit.c,v 1.63 2008/02/17 16:10:18 mbse Exp $
|
|
||||||
* Purpose ...............: Line Editor
|
* Purpose ...............: Line Editor
|
||||||
*
|
*
|
||||||
*****************************************************************************
|
*****************************************************************************
|
||||||
* Copyright (C) 1997-2008
|
* Copyright (C) 1997-2010
|
||||||
*
|
*
|
||||||
* Michiel Broek FIDO: 2:280/2802
|
* Michiel Broek FIDO: 2:280/2802
|
||||||
* Beekmansbos 10
|
* Beekmansbos 10
|
||||||
@ -105,7 +104,7 @@ int check_free(void)
|
|||||||
Syslog('+', "The BBS is closed");
|
Syslog('+', "The BBS is closed");
|
||||||
return TRUE;
|
return TRUE;
|
||||||
} else {
|
} else {
|
||||||
errmsg("Cannon continue, failed to close the bbs");
|
errmsg("Cannot continue, failed to close the bbs");
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
*
|
*
|
||||||
* $Id: m_global.c,v 1.92 2008/12/28 12:20:14 mbse Exp $
|
|
||||||
* Purpose ...............: Global Setup Program
|
* Purpose ...............: Global Setup Program
|
||||||
*
|
*
|
||||||
*****************************************************************************
|
*****************************************************************************
|
||||||
* Copyright (C) 1997-2008
|
* Copyright (C) 1997-2010
|
||||||
*
|
*
|
||||||
* Michiel Broek FIDO: 2:280/2802
|
* Michiel Broek FIDO: 2:280/2802
|
||||||
* Beekmansbos 10
|
* Beekmansbos 10
|
||||||
@ -1725,8 +1724,8 @@ int global_doc(FILE *fp, FILE *toc, int page)
|
|||||||
return page;
|
return page;
|
||||||
|
|
||||||
page = newpage(fp, page);
|
page = newpage(fp, page);
|
||||||
addtoc(fp, toc, 0, 0, page, (char *)"System inormation");
|
addtoc(fp, toc, 0, 0, page, (char *)"System information");
|
||||||
addtoc(fp, toc, 0, 1, page, (char *)"System inormation");
|
addtoc(fp, toc, 0, 1, page, (char *)"System information");
|
||||||
|
|
||||||
wp = open_webdoc((char *)"global.html", (char *)"Global Configuration", NULL);
|
wp = open_webdoc((char *)"global.html", (char *)"Global Configuration", NULL);
|
||||||
fprintf(wp, "<A HREF=\"index.html\">Main</A>\n");
|
fprintf(wp, "<A HREF=\"index.html\">Main</A>\n");
|
||||||
|
Reference in New Issue
Block a user