[BACK]Return to sftp-int.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/Attic/sftp-int.c between version 1.36.2.2 and 1.36.2.3

version 1.36.2.2, 2002/03/09 00:20:45 version 1.36.2.3, 2002/06/02 22:56:11
Line 178 
Line 178 
                     strerror(errno));                      strerror(errno));
                 _exit(1);                  _exit(1);
         }          }
         if (waitpid(pid, &status, 0) == -1)          while (waitpid(pid, &status, 0) == -1)
                 fatal("Couldn't wait for child: %s", strerror(errno));                  if (errno != EINTR)
                           fatal("Couldn't wait for child: %s", strerror(errno));
         if (!WIFEXITED(status))          if (!WIFEXITED(status))
                 error("Shell exited abormally");                  error("Shell exited abormally");
         else if (WEXITSTATUS(status))          else if (WEXITSTATUS(status))
Line 888 
Line 889 
                                     file2);                                      file2);
   
                         parse_dispatch_command(conn, cmd, &pwd);                          parse_dispatch_command(conn, cmd, &pwd);
                           xfree(dir);
                         return;                          return;
                 }                  }
                   xfree(dir);
         }          }
         setvbuf(stdout, NULL, _IOLBF, 0);          setvbuf(stdout, NULL, _IOLBF, 0);
         setvbuf(infile, NULL, _IOLBF, 0);          setvbuf(infile, NULL, _IOLBF, 0);

Legend:
Removed from v.1.36.2.2  
changed lines
  Added in v.1.36.2.3