[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.304 and 1.305

version 1.304, 2007/10/29 01:55:04 version 1.305, 2007/10/29 06:54:50
Line 983 
Line 983 
         /* Initiate port forwardings. */          /* Initiate port forwardings. */
         ssh_init_forwarding();          ssh_init_forwarding();
   
           /* Execute a local command */
           if (options.local_command != NULL &&
               options.permit_local_command)
                   ssh_local_cmd(options.local_command);
   
         /* If requested, let ssh continue in the background. */          /* If requested, let ssh continue in the background. */
         if (fork_after_authentication_flag)          if (fork_after_authentication_flag)
                 if (daemon(1, 1) < 0)                  if (daemon(1, 1) < 0)

Legend:
Removed from v.1.304  
changed lines
  Added in v.1.305