diff options
author | ptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-05-25 02:42:51 +0800 |
---|---|---|
committer | ptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-05-25 02:42:51 +0800 |
commit | ddc3595ab1076fdf1509686f20c4b106647f83d7 (patch) | |
tree | d4cd4afcde49d792d7f01a353ad80accb1085011 /mbbsd/board.c | |
parent | 4aaaa108cec2c79127e4a49336fc5e159ae823c8 (diff) | |
download | pttbbs-ddc3595ab1076fdf1509686f20c4b106647f83d7.tar pttbbs-ddc3595ab1076fdf1509686f20c4b106647f83d7.tar.gz pttbbs-ddc3595ab1076fdf1509686f20c4b106647f83d7.tar.bz2 pttbbs-ddc3595ab1076fdf1509686f20c4b106647f83d7.tar.lz pttbbs-ddc3595ab1076fdf1509686f20c4b106647f83d7.tar.xz pttbbs-ddc3595ab1076fdf1509686f20c4b106647f83d7.tar.zst pttbbs-ddc3595ab1076fdf1509686f20c4b106647f83d7.zip |
*** empty log message ***
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@205 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/board.c')
-rw-r--r-- | mbbsd/board.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mbbsd/board.c b/mbbsd/board.c index 4600c095..e8718ea4 100644 --- a/mbbsd/board.c +++ b/mbbsd/board.c @@ -1,4 +1,4 @@ -/* $Id: board.c,v 1.13 2002/05/24 18:34:22 ptt Exp $ */ +/* $Id: board.c,v 1.14 2002/05/24 18:42:51 ptt Exp $ */ #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -618,9 +618,9 @@ static void show_brdlist(int head, int clsflag, int newflag) { if (ptr->bh->brdattr & BRD_BAD) prints(" X "); else if(ptr->bh->nuser>30) - prints("\033[31mHOT\033[m"); - else if(ptr->bh->nuser) - prints("\033[31m%2d\033[m ",ptr->bh->nuser); + prints("\033[1;31mHOT\033[m"); + else if(ptr->bh->nuser>0) + prints("\033[1;31m%2d\033[m ",ptr->bh->nuser); else prints(" %c ", ptr->bh->bvote? 'V':' '); prints("%.13s", ptr->bh->BM); refresh(); |