[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.29 and 1.30

version 1.29, 2000/05/02 22:18:04 version 1.30, 2000/05/06 17:45:36
Line 105 
Line 105 
         oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,          oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
         oCompressionLevel, oKeepAlives, oNumberOfPasswordPrompts, oTISAuthentication,          oCompressionLevel, oKeepAlives, oNumberOfPasswordPrompts, oTISAuthentication,
         oUsePrivilegedPort, oLogLevel, oCiphers, oProtocol, oIdentityFile2,          oUsePrivilegedPort, oLogLevel, oCiphers, oProtocol, oIdentityFile2,
         oGlobalKnownHostsFile2, oUserKnownHostsFile2          oGlobalKnownHostsFile2, oUserKnownHostsFile2, oDSAAuthentication
 } OpCodes;  } OpCodes;
   
 /* Textual representations of the tokens. */  /* Textual representations of the tokens. */
Line 121 
Line 121 
         { "rhostsauthentication", oRhostsAuthentication },          { "rhostsauthentication", oRhostsAuthentication },
         { "passwordauthentication", oPasswordAuthentication },          { "passwordauthentication", oPasswordAuthentication },
         { "rsaauthentication", oRSAAuthentication },          { "rsaauthentication", oRSAAuthentication },
           { "dsaauthentication", oDSAAuthentication },
         { "skeyauthentication", oSkeyAuthentication },          { "skeyauthentication", oSkeyAuthentication },
 #ifdef KRB4  #ifdef KRB4
         { "kerberosauthentication", oKerberosAuthentication },          { "kerberosauthentication", oKerberosAuthentication },
Line 290 
Line 291 
                 intptr = &options->password_authentication;                  intptr = &options->password_authentication;
                 goto parse_flag;                  goto parse_flag;
   
           case oDSAAuthentication:
                   intptr = &options->dsa_authentication;
                   goto parse_flag;
   
         case oRSAAuthentication:          case oRSAAuthentication:
                 intptr = &options->rsa_authentication;                  intptr = &options->rsa_authentication;
                 goto parse_flag;                  goto parse_flag;
Line 637 
Line 642 
         options->use_privileged_port = -1;          options->use_privileged_port = -1;
         options->rhosts_authentication = -1;          options->rhosts_authentication = -1;
         options->rsa_authentication = -1;          options->rsa_authentication = -1;
           options->dsa_authentication = -1;
         options->skey_authentication = -1;          options->skey_authentication = -1;
 #ifdef KRB4  #ifdef KRB4
         options->kerberos_authentication = -1;          options->kerberos_authentication = -1;
Line 696 
Line 702 
                 options->rhosts_authentication = 1;                  options->rhosts_authentication = 1;
         if (options->rsa_authentication == -1)          if (options->rsa_authentication == -1)
                 options->rsa_authentication = 1;                  options->rsa_authentication = 1;
           if (options->dsa_authentication == -1)
                   options->dsa_authentication = 1;
         if (options->skey_authentication == -1)          if (options->skey_authentication == -1)
                 options->skey_authentication = 0;                  options->skey_authentication = 0;
 #ifdef KRB4  #ifdef KRB4

Legend:
Removed from v.1.29  
changed lines
  Added in v.1.30