comparison cli-session.c @ 100:c72f5c10125d

oops, the fcntl() was commented out
author Matt Johnston <matt@ucc.asn.au>
date Mon, 23 Aug 2004 02:46:24 +0000
parents 0247fbd9379d
children d3eb1fa8484e
comparison
equal deleted inserted replaced
99:0247fbd9379d 100:c72f5c10125d
246 return; 246 return;
247 } 247 }
248 248
249 /* Set stdin back to non-blocking - busybox ash dies nastily 249 /* Set stdin back to non-blocking - busybox ash dies nastily
250 * if we don't revert the flags */ 250 * if we don't revert the flags */
251 TRACE(("close stdincopy = %d", cli_ses.stdincopy)); 251 fcntl(cli_ses.stdincopy, F_SETFL, cli_ses.stdinflags);
252 //fcntl(cli_ses.stdincopy, F_SETFL, cli_ses.stdinflags);
253 252
254 cli_tty_cleanup(); 253 cli_tty_cleanup();
255 254
256 } 255 }
257 256