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

Diff for /src/usr.bin/ssh/auth2-chall.c between version 1.46 and 1.47

version 1.46, 2017/05/30 14:18:15 version 1.47, 2017/05/30 14:23:52
Line 41 
Line 41 
   
 static int auth2_challenge_start(Authctxt *);  static int auth2_challenge_start(Authctxt *);
 static int send_userauth_info_request(Authctxt *);  static int send_userauth_info_request(Authctxt *);
 static int input_userauth_info_response(int, u_int32_t, void *);  static int input_userauth_info_response(int, u_int32_t, struct ssh *);
   
 extern KbdintDevice bsdauth_device;  extern KbdintDevice bsdauth_device;
   
Line 239 
Line 239 
 }  }
   
 static int  static int
 input_userauth_info_response(int type, u_int32_t seq, void *ctxt)  input_userauth_info_response(int type, u_int32_t seq, struct ssh *ssh)
 {  {
         struct ssh *ssh = ctxt;  
         Authctxt *authctxt = ssh->authctxt;          Authctxt *authctxt = ssh->authctxt;
         KbdintAuthctxt *kbdintctxt;          KbdintAuthctxt *kbdintctxt;
         int authenticated = 0, res;          int authenticated = 0, res;

Legend:
Removed from v.1.46  
changed lines
  Added in v.1.47