[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.129 and 1.130

version 1.129, 2013/05/19 02:42:42 version 1.130, 2014/01/29 06:18:35
Line 67 
Line 67 
 #ifdef GSSAPI  #ifdef GSSAPI
 extern Authmethod method_gssapi;  extern Authmethod method_gssapi;
 #endif  #endif
 #ifdef JPAKE  
 extern Authmethod method_jpake;  
 #endif  
   
 Authmethod *authmethods[] = {  Authmethod *authmethods[] = {
         &method_none,          &method_none,
Line 77 
Line 74 
 #ifdef GSSAPI  #ifdef GSSAPI
         &method_gssapi,          &method_gssapi,
 #endif  #endif
 #ifdef JPAKE  
         &method_jpake,  
 #endif  
         &method_passwd,          &method_passwd,
         &method_kbdint,          &method_kbdint,
         &method_hostbased,          &method_hostbased,
Line 250 
Line 244 
         }          }
         /* reset state */          /* reset state */
         auth2_challenge_stop(authctxt);          auth2_challenge_stop(authctxt);
 #ifdef JPAKE  
         auth2_jpake_stop(authctxt);  
 #endif  
   
 #ifdef GSSAPI  #ifdef GSSAPI
         /* XXX move to auth2_gssapi_stop() */          /* XXX move to auth2_gssapi_stop() */

Legend:
Removed from v.1.129  
changed lines
  Added in v.1.130