[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.45 and 1.46

version 1.45, 2002/03/19 06:32:56 version 1.46, 2002/03/30 18:51:15
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))

Legend:
Removed from v.1.45  
changed lines
  Added in v.1.46