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

Diff for /src/usr.bin/ssh/auth2-hostbased.c between version 1.1 and 1.2

version 1.1, 2002/05/25 18:51:07 version 1.2, 2002/05/31 11:35:15
Line 44 
Line 44 
 extern u_char *session_id2;  extern u_char *session_id2;
 extern int session_id2_len;  extern int session_id2_len;
   
 int  static int
 userauth_hostbased(Authctxt *authctxt)  userauth_hostbased(Authctxt *authctxt)
 {  {
         Buffer b;          Buffer b;
Line 174 
Line 174 
   
         return (host_status == HOST_OK);          return (host_status == HOST_OK);
 }  }
   
   Authmethod method_hostbased = {
           "hostbased",
           userauth_hostbased,
           &options.hostbased_authentication
   };

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2