Set default editor on erased userrecords and bumped version
This commit is contained in:
parent
71991f66a8
commit
15caf2d63c
@ -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
|
||||
|
2
TODO
2
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
|
||||
|
2
configure
vendored
2
configure
vendored
@ -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"
|
||||
|
@ -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"
|
||||
|
@ -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;
|
||||
|
Reference in New Issue
Block a user