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

Diff for /src/usr.bin/ssh/sshconnect.c between version 1.362 and 1.363

version 1.362, 2023/03/05 05:34:09 version 1.363, 2023/03/10 07:17:08
Line 347 
Line 347 
                 error("socket: %s", strerror(errno));                  error("socket: %s", strerror(errno));
                 return -1;                  return -1;
         }          }
         fcntl(sock, F_SETFD, FD_CLOEXEC);          (void)fcntl(sock, F_SETFD, FD_CLOEXEC);
   
         /* Use interactive QOS (if specified) until authentication completed */          /* Use interactive QOS (if specified) until authentication completed */
         if (options.ip_qos_interactive != INT_MAX)          if (options.ip_qos_interactive != INT_MAX)

Legend:
Removed from v.1.362  
changed lines
  Added in v.1.363