diff --git a/ChangeLog b/ChangeLog index 871ef2ac..106e5f8d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,12 @@ $Id$ -v0.91.2 14-Jan-2007 +v0.91.3 11-Feb-2007 + + mbuser: + Set default editor on erased records. + + +v0.91.2 14-Jan-2007 - 11-Feb-2007 mbcico: If no suitable compressor found for binkp transfers then don't diff --git a/TODO b/TODO index 67d27950..4823379e 100644 --- a/TODO +++ b/TODO @@ -1,6 +1,6 @@ $Id$ - MBSE BBS V0.91.2 TODO list. + MBSE BBS V0.91.3 TODO list. --------------------------- These are a list of things that must be implemented one way or diff --git a/configure b/configure index a3ecf283..74b37c80 100755 --- a/configure +++ b/configure @@ -1718,7 +1718,7 @@ SUBDIRS="lib mbcico mbfido mbmon mbsebbs mbutils mbnntp mbtask mbsetup unix lang PACKAGE="mbsebbs" MAJOR="0" MINOR="91" -REVISION="2" +REVISION="3" VERSION="$MAJOR.$MINOR.$REVISION" COPYRIGHT="Copyright (C) 1997-2007 Michiel Broek, All Rights Reserved" SHORTRIGHT="Copyright (C) 1997-2007 M. Broek" diff --git a/configure.in b/configure.in index fe2a3733..27e0f6c2 100644 --- a/configure.in +++ b/configure.in @@ -13,7 +13,7 @@ dnl PACKAGE="mbsebbs" MAJOR="0" MINOR="91" -REVISION="2" +REVISION="3" VERSION="$MAJOR.$MINOR.$REVISION" COPYRIGHT="Copyright (C) 1997-2007 Michiel Broek, All Rights Reserved" SHORTRIGHT="Copyright (C) 1997-2007 M. Broek" diff --git a/mbutils/mbuser.c b/mbutils/mbuser.c index edb733b4..ca2196c4 100644 --- a/mbutils/mbuser.c +++ b/mbutils/mbuser.c @@ -4,7 +4,7 @@ * Purpose ...............: User Pack Util * ***************************************************************************** - * Copyright (C) 1997-2005 + * Copyright (C) 1997-2007 * * Michiel Broek FIDO: 2:280/2802 * Beekmansbos 10 @@ -344,6 +344,10 @@ void UserPack(int days, int level, int pack) * Blank the deleted records for reuse. */ memset(&usr, 0, sizeof(usr)); + if (strlen(CFG.externaleditor)) + usr.MsgEditor = EXTEDIT; + else + usr.MsgEditor = FSEDIT; fwrite(&usr, sizeof(usr), 1, fout); delete++; updated = TRUE;