diff options
-rw-r--r-- | mbbsd/board.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mbbsd/board.c b/mbbsd/board.c index fe8af9ac..98d6669a 100644 --- a/mbbsd/board.c +++ b/mbbsd/board.c @@ -556,7 +556,7 @@ b_config(void) SOLVE_ANSI_CACHE(); outs("請輸入看板新中文敘述: "); vgetstr(genbuf, BTLEN-16, 0, bp->title + 7); - if (!genbuf[0]) + if (!genbuf[0] || strcmp(genbuf, bp->title+7) == 0) break; touched = 1; strip_ansi(genbuf, genbuf, STRIP_ALL); |