summaryrefslogtreecommitdiffstats
path: root/mbbsd/board.c
diff options
context:
space:
mode:
authorin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-03-28 03:18:52 +0800
committerin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-03-28 03:18:52 +0800
commitc6039133a90954b11c8208fd96dade7bc19e3922 (patch)
tree7c19107de7e23b51de0d52e5ec31643f3636bf6b /mbbsd/board.c
parent961cb4301f4c83ad94c58821e1de364bab3bd392 (diff)
downloadpttbbs-c6039133a90954b11c8208fd96dade7bc19e3922.tar
pttbbs-c6039133a90954b11c8208fd96dade7bc19e3922.tar.gz
pttbbs-c6039133a90954b11c8208fd96dade7bc19e3922.tar.bz2
pttbbs-c6039133a90954b11c8208fd96dade7bc19e3922.tar.lz
pttbbs-c6039133a90954b11c8208fd96dade7bc19e3922.tar.xz
pttbbs-c6039133a90954b11c8208fd96dade7bc19e3922.tar.zst
pttbbs-c6039133a90954b11c8208fd96dade7bc19e3922.zip
bug fix of moving board
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@735 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/board.c')
-rw-r--r--mbbsd/board.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/mbbsd/board.c b/mbbsd/board.c
index fb598591..d041ec65 100644
--- a/mbbsd/board.c
+++ b/mbbsd/board.c
@@ -1,4 +1,4 @@
-/* $Id: board.c,v 1.108 2003/03/27 15:14:33 victor Exp $ */
+/* $Id: board.c,v 1.109 2003/03/27 19:18:52 in2 Exp $ */
#include "bbs.h"
#define BRC_STRLEN 15 /* Length of board name */
#define BRC_MAXSIZE 24576
@@ -1214,16 +1214,21 @@ choose_board(int newflag)
if (class_bid != 0 &&
(HAS_PERM(PERM_SYSOP) || (currmode & MODE_MENU))) {
for (tmp = 0; tmp < fav->nDatas; tmp++) {
- boardheader_t *bh = &bcache[tmp];
+ short bid = fav->b[tmp].bid;
+ boardheader_t *bh = &bcache[ bid - 1 ];
+ /*
if (!(fav->b[tmp].attr & BRD_TAG) || bh->gid == class_bid)
continue;
+ */
+ if( !(fav->b[tmp].attr & BRD_TAG) )
+ continue;
favchange = 1;
fav->b[tmp].attr &= ~BRD_TAG;
if (bh->gid != class_bid) {
bh->gid = class_bid;
substitute_record(FN_BOARD, bh,
- sizeof(boardheader_t), tmp + 1);
- reset_board(tmp + 1);
+ sizeof(boardheader_t), bid);
+ reset_board(bid);
log_usies("SetBoardGID", bh->brdname);
}
}