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

Diff for /src/usr.bin/ssh/ssh.c between version 1.341 and 1.342

version 1.341, 2010/06/26 23:04:04 version 1.342, 2010/07/12 22:38:52
Line 1282 
Line 1282 
         /* Start listening for multiplex clients */          /* Start listening for multiplex clients */
         muxserver_listen();          muxserver_listen();
   
         /* If requested, let ssh continue in the background. */          /*
         if (fork_after_authentication_flag) {           * If requested and we are not interested in replies to remote
            * forwarding requests, then let ssh continue in the background.
            */
           if (fork_after_authentication_flag &&
               (!options.exit_on_forward_failure ||
               options.num_remote_forwards == 0)) {
                 fork_after_authentication_flag = 0;                  fork_after_authentication_flag = 0;
                 if (daemon(1, 1) < 0)                  if (daemon(1, 1) < 0)
                         fatal("daemon() failed: %.200s", strerror(errno));                          fatal("daemon() failed: %.200s", strerror(errno));

Legend:
Removed from v.1.341  
changed lines
  Added in v.1.342