From 3180979dbe758140484a0a0faa8da0cbaa3ed0d6 Mon Sep 17 00:00:00 2001 From: piaip Date: Wed, 10 Jun 2009 08:27:51 +0000 Subject: * extra login messages should be displayed only in tunnel mode. git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@4538 63ad8ddf-47c3-0310-b6dd-a9e9d9715204 --- mbbsd/mbbsd.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/mbbsd/mbbsd.c b/mbbsd/mbbsd.c index a9c16f48..f152b193 100644 --- a/mbbsd/mbbsd.c +++ b/mbbsd/mbbsd.c @@ -1749,9 +1749,12 @@ main(int argc, char *argv[], char *envp[]) do_term_init(option->term_mode, option->term_width, option->term_height); - move(b_lines-1, 0); - outs("登入中,請稍候..."); - doupdate(); + if (option->tunnel_mode) + { + move(b_lines-1, 0); + outs("登入中,請稍候..."); + doupdate(); + } start_client(option); free_program_option(option); -- cgit v1.2.3