[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.169 and 1.170

version 1.169, 2007/02/22 12:58:40 version 1.170, 2007/03/01 10:28:02
Line 320 
Line 320 
 #endif  #endif
         { "passwordauthentication", sPasswordAuthentication, SSHCFG_ALL },          { "passwordauthentication", sPasswordAuthentication, SSHCFG_ALL },
         { "kbdinteractiveauthentication", sKbdInteractiveAuthentication, SSHCFG_ALL },          { "kbdinteractiveauthentication", sKbdInteractiveAuthentication, SSHCFG_ALL },
         { "challengeresponseauthentication", sChallengeResponseAuthentication, SSHCFG_ALL },          { "challengeresponseauthentication", sChallengeResponseAuthentication, SSHCFG_GLOBAL },
         { "skeyauthentication", sChallengeResponseAuthentication, SSHCFG_GLOBAL }, /* alias */          { "skeyauthentication", sChallengeResponseAuthentication, SSHCFG_GLOBAL }, /* alias */
         { "checkmail", sDeprecated, SSHCFG_GLOBAL },          { "checkmail", sDeprecated, SSHCFG_GLOBAL },
         { "listenaddress", sListenAddress, SSHCFG_GLOBAL },          { "listenaddress", sListenAddress, SSHCFG_GLOBAL },
Line 1307 
Line 1307 
         M_CP_INTOPT(kerberos_authentication);          M_CP_INTOPT(kerberos_authentication);
         M_CP_INTOPT(hostbased_authentication);          M_CP_INTOPT(hostbased_authentication);
         M_CP_INTOPT(kbd_interactive_authentication);          M_CP_INTOPT(kbd_interactive_authentication);
         M_CP_INTOPT(challenge_response_authentication);  
   
         M_CP_INTOPT(allow_tcp_forwarding);          M_CP_INTOPT(allow_tcp_forwarding);
         M_CP_INTOPT(gateway_ports);          M_CP_INTOPT(gateway_ports);
Line 1345 
Line 1344 
         if (bad_options > 0)          if (bad_options > 0)
                 fatal("%s: terminating, %d bad configuration options",                  fatal("%s: terminating, %d bad configuration options",
                     filename, bad_options);                      filename, bad_options);
   
           /* challenge-response is implemented via keyboard interactive */
           if (options->challenge_response_authentication == 1)
                   options->kbd_interactive_authentication = 1;
 }  }

Legend:
Removed from v.1.169  
changed lines
  Added in v.1.170