summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-03-26 18:30:59 +0800
committerin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-03-26 18:30:59 +0800
commitbbfce6b6f815a957b7e19eae3983797e77e88d92 (patch)
treee07c190bb5fe8c1ff16e8be11c2d99e77a6819e4
parent5dda1a33e92eb1fc4cd791628490a0be1833afd4 (diff)
downloadpttbbs-bbfce6b6f815a957b7e19eae3983797e77e88d92.tar
pttbbs-bbfce6b6f815a957b7e19eae3983797e77e88d92.tar.gz
pttbbs-bbfce6b6f815a957b7e19eae3983797e77e88d92.tar.bz2
pttbbs-bbfce6b6f815a957b7e19eae3983797e77e88d92.tar.lz
pttbbs-bbfce6b6f815a957b7e19eae3983797e77e88d92.tar.xz
pttbbs-bbfce6b6f815a957b7e19eae3983797e77e88d92.tar.zst
pttbbs-bbfce6b6f815a957b7e19eae3983797e77e88d92.zip
remove debug message
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk@715 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--pttbbs/mbbsd/board.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/pttbbs/mbbsd/board.c b/pttbbs/mbbsd/board.c
index 027bd4cc..e5e0460e 100644
--- a/pttbbs/mbbsd/board.c
+++ b/pttbbs/mbbsd/board.c
@@ -1,4 +1,4 @@
-/* $Id: board.c,v 1.88 2003/03/26 10:23:01 in2 Exp $ */
+/* $Id: board.c,v 1.89 2003/03/26 10:30:59 in2 Exp $ */
#include "bbs.h"
#define BRC_STRLEN 15 /* Length of board name */
#define BRC_MAXSIZE 24576
@@ -903,7 +903,7 @@ show_brdlist(int head, int clsflag, int newflag)
if (head < brdnum) {
ptr = &nbrd[head++];
if(ptr->myattr & BRD_LINE){
- prints("%5d ------------ ------------------------------------------", head, ptr->bid);
+ prints("%5d ------------ ------------------------------------------", head);
continue;
}
if (class_bid == 1)
@@ -1169,16 +1169,12 @@ choose_board(int newflag)
case 'S':
cuser.uflag ^= BRDSORT_FLAG;
if(yank_flag == 0){
- if(cuser.uflag & BRDSORT_FLAG){
- vmsg("favcmpboardclass");
+ if(cuser.uflag & BRDSORT_FLAG)
qsort(&fav->b, fav->nDatas, sizeof(fav_board_t),
favcmpboardclass);
- }
- else{
- vmsg("favcmpboardname");
+ else
qsort(&fav->b, fav->nDatas, sizeof(fav_board_t),
favcmpboardname);
- }
}
brdnum = -1;
break;