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

Diff for /src/usr.bin/ssh/clientloop.c between version 1.145 and 1.146

version 1.145, 2005/10/30 08:52:17 version 1.146, 2005/12/06 22:38:27
Line 914 
Line 914 
                 logit("      -Lport:host:hostport    Request local forward");                  logit("      -Lport:host:hostport    Request local forward");
                 logit("      -Rport:host:hostport    Request remote forward");                  logit("      -Rport:host:hostport    Request remote forward");
                 logit("      -KRhostport             Cancel remote forward");                  logit("      -KRhostport             Cancel remote forward");
                   if (!options.permit_local_command)
                           goto out;
                   logit("      !args                   Execute local command");
                   goto out;
           }
   
           if (*s == '!' && options.permit_local_command) {
                   s++;
                   ssh_local_cmd(s);
                 goto out;                  goto out;
         }          }
   

Legend:
Removed from v.1.145  
changed lines
  Added in v.1.146