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

Diff for /src/usr.bin/ssh/auth2-kbdint.c between version 1.7 and 1.8

version 1.7, 2014/07/15 15:54:14 version 1.8, 2017/05/30 14:29:59
Line 39 
Line 39 
 extern ServerOptions options;  extern ServerOptions options;
   
 static int  static int
 userauth_kbdint(Authctxt *authctxt)  userauth_kbdint(struct ssh *ssh)
 {  {
         int authenticated = 0;          int authenticated = 0;
         char *lang, *devs;          char *lang, *devs;
Line 51 
Line 51 
         debug("keyboard-interactive devs %s", devs);          debug("keyboard-interactive devs %s", devs);
   
         if (options.challenge_response_authentication)          if (options.challenge_response_authentication)
                 authenticated = auth2_challenge(authctxt, devs);                  authenticated = auth2_challenge(ssh, devs);
   
         free(devs);          free(devs);
         free(lang);          free(lang);

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8