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

Diff for /src/usr.bin/ssh/readconf.c between version 1.305 and 1.306

version 1.305, 2019/06/07 14:18:48 version 1.306, 2019/06/12 11:31:50
Line 71 
Line 71 
      User foo       User foo
   
    Host fake.com     Host fake.com
      HostName another.host.name.real.org       Hostname another.host.name.real.org
      User blaah       User blaah
      Port 34289       Port 34289
      ForwardX11 no       ForwardX11 no
Line 133 
Line 133 
         oGatewayPorts, oExitOnForwardFailure,          oGatewayPorts, oExitOnForwardFailure,
         oPasswordAuthentication, oRSAAuthentication,          oPasswordAuthentication, oRSAAuthentication,
         oChallengeResponseAuthentication, oXAuthLocation,          oChallengeResponseAuthentication, oXAuthLocation,
         oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward,          oIdentityFile, oHostname, oPort, oCipher, oRemoteForward, oLocalForward,
         oCertificateFile, oAddKeysToAgent, oIdentityAgent,          oCertificateFile, oAddKeysToAgent, oIdentityAgent,
         oUser, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,          oUser, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
         oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,          oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
Line 225 
Line 225 
         { "certificatefile", oCertificateFile },          { "certificatefile", oCertificateFile },
         { "addkeystoagent", oAddKeysToAgent },          { "addkeystoagent", oAddKeysToAgent },
         { "identityagent", oIdentityAgent },          { "identityagent", oIdentityAgent },
         { "hostname", oHostName },          { "hostname", oHostname },
         { "hostkeyalias", oHostKeyAlias },          { "hostkeyalias", oHostKeyAlias },
         { "proxycommand", oProxyCommand },          { "proxycommand", oProxyCommand },
         { "port", oPort },          { "port", oPort },
Line 1102 
Line 1102 
                 max_entries = SSH_MAX_HOSTS_FILES;                  max_entries = SSH_MAX_HOSTS_FILES;
                 goto parse_char_array;                  goto parse_char_array;
   
         case oHostName:          case oHostname:
                 charptr = &options->hostname;                  charptr = &options->hostname;
                 goto parse_string;                  goto parse_string;
   
Line 2576 
Line 2576 
   
         /* Most interesting options first: user, host, port */          /* Most interesting options first: user, host, port */
         dump_cfg_string(oUser, o->user);          dump_cfg_string(oUser, o->user);
         dump_cfg_string(oHostName, host);          dump_cfg_string(oHostname, host);
         dump_cfg_int(oPort, o->port);          dump_cfg_int(oPort, o->port);
   
         /* Flag options */          /* Flag options */

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