fixed vsyssh
authorSapan Bhatia <sapanb@cs.princeton.edu>
Fri, 29 Feb 2008 19:46:28 +0000 (19:46 +0000)
committerSapan Bhatia <sapanb@cs.princeton.edu>
Fri, 29 Feb 2008 19:46:28 +0000 (19:46 +0000)
vsyssh/vsyssh.c

index 586c6a7..fd82c6e 100644 (file)
@@ -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);
                                }
                        }