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

Diff for /src/usr.bin/ssh/sftp.c between version 1.27 and 1.28

version 1.27, 2002/03/19 10:49:35 version 1.28, 2002/03/30 18:51:15
Line 234 
Line 234 
         if (infile != stdin)          if (infile != stdin)
                 fclose(infile);                  fclose(infile);
   
         if (waitpid(sshpid, NULL, 0) == -1)          while (waitpid(sshpid, NULL, 0) == -1)
                 fatal("Couldn't wait for ssh process: %s", strerror(errno));                  if (errno != EINTR)
                           fatal("Couldn't wait for ssh process: %s",
                               strerror(errno));
   
         exit(0);          exit(0);
 }  }

Legend:
Removed from v.1.27  
changed lines
  Added in v.1.28