[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.224 and 1.225

version 1.224, 2022/12/16 06:52:48 version 1.225, 2023/01/05 05:49:13
Line 254 
Line 254 
         while ((pid = waitpid(sshpid, NULL, WNOHANG)) == -1 && errno == EINTR)          while ((pid = waitpid(sshpid, NULL, WNOHANG)) == -1 && errno == EINTR)
                 continue;                  continue;
         if (pid == sshpid) {          if (pid == sshpid) {
                 (void)write(STDERR_FILENO, msg, sizeof(msg) - 1);                  if (!quiet)
                       (void)write(STDERR_FILENO, msg, sizeof(msg) - 1);
                 sshpid = -1;                  sshpid = -1;
         }          }
   

Legend:
Removed from v.1.224  
changed lines
  Added in v.1.225