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

Diff for /src/usr.bin/ssh/sshconnect2.c between version 1.364 and 1.365

version 1.364, 2023/03/06 12:14:48 version 1.365, 2023/03/08 04:43:12
Line 482 
Line 482 
         }          }
 }  }
   
 /* ARGSUSED */  
 static int  static int
 input_userauth_service_accept(int type, u_int32_t seq, struct ssh *ssh)  input_userauth_service_accept(int type, u_int32_t seq, struct ssh *ssh)
 {  {
Line 514 
Line 513 
         return r;          return r;
 }  }
   
 /* ARGSUSED */  
 static int  static int
 input_userauth_ext_info(int type, u_int32_t seqnr, struct ssh *ssh)  input_userauth_ext_info(int type, u_int32_t seqnr, struct ssh *ssh)
 {  {
Line 559 
Line 557 
         }          }
 }  }
   
 /* ARGSUSED */  
 static int  static int
 input_userauth_error(int type, u_int32_t seq, struct ssh *ssh)  input_userauth_error(int type, u_int32_t seq, struct ssh *ssh)
 {  {
Line 567 
Line 564 
         return 0;          return 0;
 }  }
   
 /* ARGSUSED */  
 static int  static int
 input_userauth_banner(int type, u_int32_t seq, struct ssh *ssh)  input_userauth_banner(int type, u_int32_t seq, struct ssh *ssh)
 {  {
Line 587 
Line 583 
         return r;          return r;
 }  }
   
 /* ARGSUSED */  
 static int  static int
 input_userauth_success(int type, u_int32_t seq, struct ssh *ssh)  input_userauth_success(int type, u_int32_t seq, struct ssh *ssh)
 {  {
Line 620 
Line 615 
 }  }
 #endif  #endif
   
 /* ARGSUSED */  
 static int  static int
 input_userauth_failure(int type, u_int32_t seq, struct ssh *ssh)  input_userauth_failure(int type, u_int32_t seq, struct ssh *ssh)
 {  {
Line 681 
Line 675 
         return ret;          return ret;
 }  }
   
 /* ARGSUSED */  
 static int  static int
 input_userauth_pk_ok(int type, u_int32_t seq, struct ssh *ssh)  input_userauth_pk_ok(int type, u_int32_t seq, struct ssh *ssh)
 {  {
Line 889 
Line 882 
         return status;          return status;
 }  }
   
 /* ARGSUSED */  
 static int  static int
 input_gssapi_response(int type, u_int32_t plen, struct ssh *ssh)  input_gssapi_response(int type, u_int32_t plen, struct ssh *ssh)
 {  {
Line 934 
Line 926 
         return r;          return r;
 }  }
   
 /* ARGSUSED */  
 static int  static int
 input_gssapi_token(int type, u_int32_t plen, struct ssh *ssh)  input_gssapi_token(int type, u_int32_t plen, struct ssh *ssh)
 {  {
Line 967 
Line 958 
         return r;          return r;
 }  }
   
 /* ARGSUSED */  
 static int  static int
 input_gssapi_errtok(int type, u_int32_t plen, struct ssh *ssh)  input_gssapi_errtok(int type, u_int32_t plen, struct ssh *ssh)
 {  {
Line 1002 
Line 992 
         return 0;          return 0;
 }  }
   
 /* ARGSUSED */  
 static int  static int
 input_gssapi_error(int type, u_int32_t plen, struct ssh *ssh)  input_gssapi_error(int type, u_int32_t plen, struct ssh *ssh)
 {  {
Line 1080 
Line 1069 
 /*  /*
  * parse PASSWD_CHANGEREQ, prompt user and send SSH2_MSG_USERAUTH_REQUEST   * parse PASSWD_CHANGEREQ, prompt user and send SSH2_MSG_USERAUTH_REQUEST
  */   */
 /* ARGSUSED */  
 static int  static int
 input_userauth_passwd_changereq(int type, u_int32_t seqnr, struct ssh *ssh)  input_userauth_passwd_changereq(int type, u_int32_t seqnr, struct ssh *ssh)
 {  {

Legend:
Removed from v.1.364  
changed lines
  Added in v.1.365