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

Diff for /src/usr.bin/ssh/servconf.c between version 1.51 and 1.52

version 1.51, 2000/09/07 20:27:53 version 1.52, 2000/10/11 20:14:39
Line 61 
Line 61 
         options->afs_token_passing = -1;          options->afs_token_passing = -1;
 #endif  #endif
         options->password_authentication = -1;          options->password_authentication = -1;
           options->kbd_interactive_authentication = -1;
 #ifdef SKEY  #ifdef SKEY
         options->skey_authentication = -1;          options->skey_authentication = -1;
 #endif  #endif
Line 148 
Line 149 
 #endif /* AFS */  #endif /* AFS */
         if (options->password_authentication == -1)          if (options->password_authentication == -1)
                 options->password_authentication = 1;                  options->password_authentication = 1;
           if (options->kbd_interactive_authentication == -1)
                   options->kbd_interactive_authentication = 0;
 #ifdef SKEY  #ifdef SKEY
         if (options->skey_authentication == -1)          if (options->skey_authentication == -1)
                 options->skey_authentication = 1;                  options->skey_authentication = 1;
Line 183 
Line 186 
 #ifdef SKEY  #ifdef SKEY
         sSkeyAuthentication,          sSkeyAuthentication,
 #endif  #endif
         sPasswordAuthentication, sListenAddress,          sPasswordAuthentication, sKbdInteractiveAuthentication, sListenAddress,
         sPrintMotd, sIgnoreRhosts, sX11Forwarding, sX11DisplayOffset,          sPrintMotd, sIgnoreRhosts, sX11Forwarding, sX11DisplayOffset,
         sStrictModes, sEmptyPasswd, sRandomSeedFile, sKeepAlives, sCheckMail,          sStrictModes, sEmptyPasswd, sRandomSeedFile, sKeepAlives, sCheckMail,
         sUseLogin, sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,          sUseLogin, sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,
Line 220 
Line 223 
         { "afstokenpassing", sAFSTokenPassing },          { "afstokenpassing", sAFSTokenPassing },
 #endif  #endif
         { "passwordauthentication", sPasswordAuthentication },          { "passwordauthentication", sPasswordAuthentication },
           { "kbdinteractiveauthentication", sKbdInteractiveAuthentication },
 #ifdef SKEY  #ifdef SKEY
         { "skeyauthentication", sSkeyAuthentication },          { "skeyauthentication", sSkeyAuthentication },
 #endif  #endif
Line 495 
Line 499 
   
                 case sPasswordAuthentication:                  case sPasswordAuthentication:
                         intptr = &options->password_authentication;                          intptr = &options->password_authentication;
                           goto parse_flag;
   
                   case sKbdInteractiveAuthentication:
                           intptr = &options->kbd_interactive_authentication;
                         goto parse_flag;                          goto parse_flag;
   
                 case sCheckMail:                  case sCheckMail:

Legend:
Removed from v.1.51  
changed lines
  Added in v.1.52