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

Diff for /src/usr.bin/ssh/auth.h between version 1.35.2.2 and 1.35.2.3

version 1.35.2.2, 2002/05/18 04:50:37 version 1.35.2.3, 2002/06/26 15:30:37
Line 43 
Line 43 
 #endif  #endif
   
 typedef struct Authctxt Authctxt;  typedef struct Authctxt Authctxt;
   typedef struct Authmethod Authmethod;
 typedef struct KbdintDevice KbdintDevice;  typedef struct KbdintDevice KbdintDevice;
   
 struct Authctxt {  struct Authctxt {
Line 69 
Line 70 
         krb5_principal   krb5_user;          krb5_principal   krb5_user;
         char            *krb5_ticket_file;          char            *krb5_ticket_file;
 #endif  #endif
   };
   
   struct Authmethod {
           char    *name;
           int     (*userauth)(Authctxt *authctxt);
           int     *enabled;
 };  };
   
 /*  /*

Legend:
Removed from v.1.35.2.2  
changed lines
  Added in v.1.35.2.3