Bumped version to 0.39.4

This commit is contained in:
Michiel Broek 2003-12-08 18:13:21 +00:00
parent 49328fa66c
commit fc6e630ed0
5 changed files with 19 additions and 18 deletions

View File

@ -1,6 +1,9 @@
$Id$
v0.39.3 26-Nov-2003
v0.39.4 08-Dec-2003
v0.39.3 26-Nov-2003 - 08-Dec-2003.
general:
Since this version Posix threads are being used, please let
@ -58,6 +61,7 @@ v0.39.3 26-Nov-2003
mbsebbs:
Fixed small memory leak.
Fixed posting to local/echomail areas from bbs users.
mball:
Fixed 2 forgotten fclose functions.

5
TODO
View File

@ -74,9 +74,6 @@ mbfido:
N: Code cleanup and make a structure in this program. Remove duplicate
or similar functions.
L: Remove memory leak during toss. (It's ok for less 5000 messages for
each run).
N: Process GoldED filerequest netmails with the filereq flag set, we
should create a .req file with the contents of the subject line.
@ -96,7 +93,7 @@ mbfido:
L: Maybe store echomail for unknown areas in badmail area.
L: Make ik possible to only virus scan the complete archives.
L: Make it possible to only virus scan the complete archives.
N: Force processing of arealists so that all tags are forced to
uppercase. Seems to give problems in some nets.

2
configure vendored
View File

@ -1274,7 +1274,7 @@ SUBDIRS="lib mbcico mbfido mbmon mbsebbs mbtask mbsetup unix lang examples html
PACKAGE="mbsebbs"
MAJOR="0"
MINOR="39"
REVISION="3"
REVISION="4"
VERSION="$MAJOR.$MINOR.$REVISION"
COPYRIGHT="Copyright (C) 1997-2003 Michiel Broek, All Rights Reserved"
SHORTRIGHT="Copyright (C) 1997-2003 M. Broek"

View File

@ -11,7 +11,7 @@ dnl After changeing the version number, run autoconf!
PACKAGE="mbsebbs"
MAJOR="0"
MINOR="39"
REVISION="3"
REVISION="4"
VERSION="$MAJOR.$MINOR.$REVISION"
COPYRIGHT="Copyright (C) 1997-2003 Michiel Broek, All Rights Reserved"
SHORTRIGHT="Copyright (C) 1997-2003 M. Broek"

View File

@ -4,7 +4,7 @@
* Purpose ...............: Make Web statistics
*
*****************************************************************************
* Copyright (C) 1997-2002
* Copyright (C) 1997-2003
*
* Michiel Broek FIDO: 2:280/2802
* Beekmansbos 10
@ -98,17 +98,16 @@ void closepage(FILE *fa, char *Name, FILE *fi)
char *adate(time_t);
char *adate(time_t now)
{
static char buf[40];
struct tm ptm;
static char buf[40];
struct tm ptm;
if (now == 0L) {
sprintf(buf, " ");
} else {
ptm = *localtime(&now);
sprintf(buf, "%02d-%02d-%04d %02d:%02d", ptm.tm_mday, ptm.tm_mon +1, ptm.tm_year + 1900,
ptm.tm_hour, ptm.tm_min);
}
return buf;
if (now == 0L) {
sprintf(buf, " ");
} else {
ptm = *localtime(&now);
sprintf(buf, "%02d-%02d-%04d %02d:%02d", ptm.tm_mday, ptm.tm_mon +1, ptm.tm_year + 1900, ptm.tm_hour, ptm.tm_min);
}
return buf;
}
@ -127,6 +126,7 @@ void MakeStat(void)
}
if (!do_quiet) {
colour(CYAN, BLACK);
printf("\rMaking statistical HTML pages");
fflush(stdout);
}