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

Diff for /src/usr.bin/ssh/auth2.c between version 1.33 and 1.34

version 1.33, 2001/01/22 08:32:53 version 1.34, 2001/01/22 23:06:39
Line 110 
Line 110 
   
         x_authctxt = authctxt;          /*XXX*/          x_authctxt = authctxt;          /*XXX*/
   
           /* challenge-reponse is implemented via keyboard interactive */
           if (options.challenge_reponse_authentication)
                   options.kbd_interactive_authentication = 1;
   
 #ifdef AFS  #ifdef AFS
         /* If machine has AFS, set process authentication group. */          /* If machine has AFS, set process authentication group. */
         if (k_hasafs()) {          if (k_hasafs()) {
Line 344 
Line 348 
   
         debug("keyboard-interactive language %s devs %s", lang, devs);          debug("keyboard-interactive language %s devs %s", lang, devs);
   
         authenticated = auth2_challenge(authctxt, devs);          if (options.challenge_reponse_authentication)
                   authenticated = auth2_challenge(authctxt, devs);
   
         xfree(lang);          xfree(lang);
         xfree(devs);          xfree(devs);

Legend:
Removed from v.1.33  
changed lines
  Added in v.1.34