From 97bb62063d093da99f914f8c07cd512e8862a282 Mon Sep 17 00:00:00 2001 From: Sapan Bhatia Date: Fri, 29 Feb 2008 19:46:28 +0000 Subject: [PATCH] fixed vsyssh --- vsyssh/vsyssh.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/vsyssh/vsyssh.c b/vsyssh/vsyssh.c index 586c6a7..fd82c6e 100644 --- a/vsyssh/vsyssh.c +++ b/vsyssh/vsyssh.c @@ -59,24 +59,20 @@ int main(int argc, char **argv, char **envp) while (1) { int ret; printf("vsys>");fflush(stdout); - ret = select(vfd0+1, &set, NULL, NULL, &tv); FD_SET(0, &set); FD_SET(vfd0, &set); + ret = select(vfd0+1, &set, NULL, NULL, &tv); if (FD_ISSET(0,&set)) { char lineread[2048]; int ret; - printf("Here\n"); ret=read(0,lineread,2048); write(vfd1,lineread,ret); FD_CLR(0,&set); - } - if (FD_ISSET(vfd0,&set)) { + } if (FD_ISSET(vfd0,&set)) { char lineread[2048]; int ret; - printf("Here2\n"); ret=read(vfd0,lineread,2048); write(1,lineread,ret); - printf("Here3\n"); FD_CLR(vfd0,&set); } } -- 2.43.0