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

Diff for /src/usr.bin/ssh/auth2-gss.c between version 1.32 and 1.33

version 1.32, 2021/01/27 10:15:08 version 1.33, 2021/12/19 22:12:07
Line 55 
Line 55 
  * how to check local user kuserok and the like)   * how to check local user kuserok and the like)
  */   */
 static int  static int
 userauth_gssapi(struct ssh *ssh)  userauth_gssapi(struct ssh *ssh, const char *method)
 {  {
         Authctxt *authctxt = ssh->authctxt;          Authctxt *authctxt = ssh->authctxt;
         gss_OID_desc goid = {0, NULL};          gss_OID_desc goid = {0, NULL};
Line 324 
Line 324 
   
 Authmethod method_gssapi = {  Authmethod method_gssapi = {
         "gssapi-with-mic",          "gssapi-with-mic",
           NULL,
         userauth_gssapi,          userauth_gssapi,
         &options.gss_authentication          &options.gss_authentication
 };  };

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