diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-08-05 18:49:55 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-08-05 18:49:55 +0800 |
commit | 7d4fc6115ef95c78534e5a1459e79d337f9adfa8 (patch) | |
tree | 1449b8c619bae2c8e4eb839ab276b6d95b4cfd49 /mbbsd | |
parent | 4e66624eb5274199eeb7f5a951b0ff0af7a8ac1a (diff) | |
download | pttbbs-7d4fc6115ef95c78534e5a1459e79d337f9adfa8.tar pttbbs-7d4fc6115ef95c78534e5a1459e79d337f9adfa8.tar.gz pttbbs-7d4fc6115ef95c78534e5a1459e79d337f9adfa8.tar.bz2 pttbbs-7d4fc6115ef95c78534e5a1459e79d337f9adfa8.tar.lz pttbbs-7d4fc6115ef95c78534e5a1459e79d337f9adfa8.tar.xz pttbbs-7d4fc6115ef95c78534e5a1459e79d337f9adfa8.tar.zst pttbbs-7d4fc6115ef95c78534e5a1459e79d337f9adfa8.zip |
BM logic error @@ orz
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2990 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd')
-rw-r--r-- | mbbsd/bbs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mbbsd/bbs.c b/mbbsd/bbs.c index d0d8e91e..2c00c811 100644 --- a/mbbsd/bbs.c +++ b/mbbsd/bbs.c @@ -2667,7 +2667,7 @@ b_config(int ent, const fileheader_t * fhdr, const char *direct) outs(MSG_SEPERATOR); prints("\n目前 %s 看板設定:\n", bp->brdname); prints(" 中文敘述: %s\n", bp->title); - prints(" 板主名單: %s\n", (bp->BM[0] <= ' ')? bp->BM : "(無)"); + prints(" 板主名單: %s\n", (bp->BM[0] > ' ')? bp->BM : "(無)"); prints( " " ANSI_COLOR(1;36) "h" ANSI_RESET " - 公開狀態(是否隱形): %s " ANSI_RESET "\n", (bp->brdattr & BRD_HIDE) ? |