[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.77 and 1.78

version 1.77, 2006/03/19 18:51:18 version 1.78, 2006/03/25 01:30:23
Line 235 
Line 235 
                 if (errno != EINTR)                  if (errno != EINTR)
                         fatal("Couldn't wait for child: %s", strerror(errno));                          fatal("Couldn't wait for child: %s", strerror(errno));
         if (!WIFEXITED(status))          if (!WIFEXITED(status))
                 error("Shell exited abormally");                  error("Shell exited abnormally");
         else if (WEXITSTATUS(status))          else if (WEXITSTATUS(status))
                 error("Shell exited with status %d", WEXITSTATUS(status));                  error("Shell exited with status %d", WEXITSTATUS(status));
 }  }

Legend:
Removed from v.1.77  
changed lines
  Added in v.1.78