[BACK]Return to serverloop.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / crypto / external / bsd / openssh / dist

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/crypto/external/bsd/openssh/dist/serverloop.c between version 1.25 and 1.26

version 1.25, 2019/04/20 17:16:40 version 1.26, 2019/10/12 18:32:22
Line 1 
Line 1 
 /*      $NetBSD$        */  /*      $NetBSD$        */
 /* $OpenBSD: serverloop.c,v 1.215 2019/03/27 09:29:14 djm Exp $ */  /* $OpenBSD: serverloop.c,v 1.216 2019/06/28 13:35:04 deraadt Exp $ */
 /*  /*
  * Author: Tatu Ylonen <ylo@cs.hut.fi>   * Author: Tatu Ylonen <ylo@cs.hut.fi>
  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland   * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
Line 140  static int notify_pipe[2];
Line 140  static int notify_pipe[2];
 static void  static void
 notify_setup(void)  notify_setup(void)
 {  {
         if (pipe(notify_pipe) < 0) {          if (pipe(notify_pipe) == -1) {
                 error("pipe(notify_pipe) failed %s", strerror(errno));                  error("pipe(notify_pipe) failed %s", strerror(errno));
         } else if ((fcntl(notify_pipe[0], F_SETFD, FD_CLOEXEC) == -1) ||          } else if ((fcntl(notify_pipe[0], F_SETFD, FD_CLOEXEC) == -1) ||
             (fcntl(notify_pipe[1], F_SETFD, FD_CLOEXEC) == -1)) {              (fcntl(notify_pipe[1], F_SETFD, FD_CLOEXEC) == -1)) {
Line 345  process_input(struct ssh *ssh, fd_set *r
Line 345  process_input(struct ssh *ssh, fd_set *r
                         verbose("Connection closed by %.100s port %d",                          verbose("Connection closed by %.100s port %d",
                             ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));                              ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
                         return -1;                          return -1;
                 } else if (len < 0) {                  } else if (len == -1) {
                         if (errno != EINTR && errno != EAGAIN) {                          if (errno != EINTR && errno != EAGAIN) {
                                 verbose("Read error from remote host "                                  verbose("Read error from remote host "
                                     "%.100s port %d: %.100s",                                      "%.100s port %d: %.100s",
Line 400  collect_children(struct ssh *ssh)
Line 400  collect_children(struct ssh *ssh)
         if (child_terminated) {          if (child_terminated) {
                 debug("Received SIGCHLD.");                  debug("Received SIGCHLD.");
                 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||                  while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
                     (pid < 0 && errno == EINTR))                      (pid == -1 && errno == EINTR))
                         if (pid > 0)                          if (pid > 0)
                                 session_close_by_pid(ssh, pid, status);                                  session_close_by_pid(ssh, pid, status);
                 child_terminated = 0;                  child_terminated = 0;

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.26

CVSweb <webmaster@jp.NetBSD.org>