[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.120 and 1.121

version 1.120, 2003/09/01 12:50:46 version 1.121, 2003/09/01 18:15:50
Line 92 
Line 92 
         oForwardAgent, oForwardX11, oGatewayPorts,          oForwardAgent, oForwardX11, oGatewayPorts,
         oPasswordAuthentication, oRSAAuthentication,          oPasswordAuthentication, oRSAAuthentication,
         oChallengeResponseAuthentication, oXAuthLocation,          oChallengeResponseAuthentication, oXAuthLocation,
         oKerberosAuthentication, oKerberosTgtPassing,  
         oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward,          oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward,
         oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,          oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
         oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,          oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
Line 381 
Line 380 
                 intptr = &options->challenge_response_authentication;                  intptr = &options->challenge_response_authentication;
                 goto parse_flag;                  goto parse_flag;
   
         case oKerberosAuthentication:  
                 intptr = &options->kerberos_authentication;  
                 goto parse_flag;  
   
         case oKerberosTgtPassing:  
                 intptr = &options->kerberos_tgt_passing;  
                 goto parse_flag;  
   
         case oGssAuthentication:          case oGssAuthentication:
                 intptr = &options->gss_authentication;                  intptr = &options->gss_authentication;
                 goto parse_flag;                  goto parse_flag;
Line 819 
Line 810 
         options->rsa_authentication = -1;          options->rsa_authentication = -1;
         options->pubkey_authentication = -1;          options->pubkey_authentication = -1;
         options->challenge_response_authentication = -1;          options->challenge_response_authentication = -1;
         options->kerberos_authentication = -1;  
         options->kerberos_tgt_passing = -1;  
         options->gss_authentication = -1;          options->gss_authentication = -1;
         options->gss_deleg_creds = -1;          options->gss_deleg_creds = -1;
         options->password_authentication = -1;          options->password_authentication = -1;
Line 893 
Line 882 
                 options->pubkey_authentication = 1;                  options->pubkey_authentication = 1;
         if (options->challenge_response_authentication == -1)          if (options->challenge_response_authentication == -1)
                 options->challenge_response_authentication = 1;                  options->challenge_response_authentication = 1;
         if (options->kerberos_authentication == -1)  
                 options->kerberos_authentication = 1;  
         if (options->kerberos_tgt_passing == -1)  
                 options->kerberos_tgt_passing = 1;  
         if (options->gss_authentication == -1)          if (options->gss_authentication == -1)
                 options->gss_authentication = 1;                  options->gss_authentication = 1;
         if (options->gss_deleg_creds == -1)          if (options->gss_deleg_creds == -1)

Legend:
Removed from v.1.120  
changed lines
  Added in v.1.121