ipaccess: Start without echoing by default for ipaccess

This commit is contained in:
Holger Hans Peter Freyther 2011-05-14 19:58:20 +02:00
parent 8d545fbb62
commit 4d2cdc7986
1 changed files with 4 additions and 0 deletions

View File

@ -202,7 +202,11 @@ int main(int argc, char **argv) {
tcsetattr(STDOUT_FILENO, TCSADRAIN, &tios);
/* set input echoing on by default */
#if NANO_BTS_CLI_CLIENT
do_echo = 0;
#else
do_echo = 1;
#endif
/* initialize telnet box */
telnet = telnet_init(telopts, _event_handler, 0, &sock);