Set default editor on erased userrecords and bumped version

This commit is contained in:
Michiel Broek 2007-02-11 13:19:34 +00:00
parent 71991f66a8
commit 15caf2d63c
5 changed files with 15 additions and 5 deletions

View File

@ -1,6 +1,12 @@
$Id$ $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: mbcico:
If no suitable compressor found for binkp transfers then don't If no suitable compressor found for binkp transfers then don't

2
TODO
View File

@ -1,6 +1,6 @@
$Id$ $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 These are a list of things that must be implemented one way or

2
configure vendored
View File

@ -1718,7 +1718,7 @@ SUBDIRS="lib mbcico mbfido mbmon mbsebbs mbutils mbnntp mbtask mbsetup unix lang
PACKAGE="mbsebbs" PACKAGE="mbsebbs"
MAJOR="0" MAJOR="0"
MINOR="91" MINOR="91"
REVISION="2" REVISION="3"
VERSION="$MAJOR.$MINOR.$REVISION" VERSION="$MAJOR.$MINOR.$REVISION"
COPYRIGHT="Copyright (C) 1997-2007 Michiel Broek, All Rights Reserved" COPYRIGHT="Copyright (C) 1997-2007 Michiel Broek, All Rights Reserved"
SHORTRIGHT="Copyright (C) 1997-2007 M. Broek" SHORTRIGHT="Copyright (C) 1997-2007 M. Broek"

View File

@ -13,7 +13,7 @@ dnl
PACKAGE="mbsebbs" PACKAGE="mbsebbs"
MAJOR="0" MAJOR="0"
MINOR="91" MINOR="91"
REVISION="2" REVISION="3"
VERSION="$MAJOR.$MINOR.$REVISION" VERSION="$MAJOR.$MINOR.$REVISION"
COPYRIGHT="Copyright (C) 1997-2007 Michiel Broek, All Rights Reserved" COPYRIGHT="Copyright (C) 1997-2007 Michiel Broek, All Rights Reserved"
SHORTRIGHT="Copyright (C) 1997-2007 M. Broek" SHORTRIGHT="Copyright (C) 1997-2007 M. Broek"

View File

@ -4,7 +4,7 @@
* Purpose ...............: User Pack Util * Purpose ...............: User Pack Util
* *
***************************************************************************** *****************************************************************************
* Copyright (C) 1997-2005 * Copyright (C) 1997-2007
* *
* Michiel Broek FIDO: 2:280/2802 * Michiel Broek FIDO: 2:280/2802
* Beekmansbos 10 * Beekmansbos 10
@ -344,6 +344,10 @@ void UserPack(int days, int level, int pack)
* Blank the deleted records for reuse. * Blank the deleted records for reuse.
*/ */
memset(&usr, 0, sizeof(usr)); memset(&usr, 0, sizeof(usr));
if (strlen(CFG.externaleditor))
usr.MsgEditor = EXTEDIT;
else
usr.MsgEditor = FSEDIT;
fwrite(&usr, sizeof(usr), 1, fout); fwrite(&usr, sizeof(usr), 1, fout);
delete++; delete++;
updated = TRUE; updated = TRUE;