From fc6e630ed01a0a6eaaee7b4e48878e0ed55985db Mon Sep 17 00:00:00 2001 From: Michiel Broek Date: Mon, 8 Dec 2003 18:13:21 +0000 Subject: [PATCH] Bumped version to 0.39.4 --- ChangeLog | 6 +++++- TODO | 5 +---- configure | 2 +- configure.in | 2 +- mbfido/makestat.c | 22 +++++++++++----------- 5 files changed, 19 insertions(+), 18 deletions(-) diff --git a/ChangeLog b/ChangeLog index f81b0f51..190a5bde 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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. diff --git a/TODO b/TODO index ea8fe012..e61c2f81 100644 --- a/TODO +++ b/TODO @@ -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. diff --git a/configure b/configure index 3525d15b..fad25e6b 100755 --- a/configure +++ b/configure @@ -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" diff --git a/configure.in b/configure.in index 272a1908..c3e8389c 100644 --- a/configure.in +++ b/configure.in @@ -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" diff --git a/mbfido/makestat.c b/mbfido/makestat.c index 6a8e6b69..49574dda 100644 --- a/mbfido/makestat.c +++ b/mbfido/makestat.c @@ -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); }