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

Diff for /src/usr.bin/ssh/gss-serv-krb5.c between version 1.1.4.1 and 1.1.4.2

version 1.1.4.1, 2003/09/16 20:50:43 version 1.1.4.2, 2004/03/04 18:18:15
Line 44 
Line 44 
   
 /* Initialise the krb5 library, for the stuff that GSSAPI won't do */  /* Initialise the krb5 library, for the stuff that GSSAPI won't do */
   
 static int  static int
 ssh_gssapi_krb5_init()  ssh_gssapi_krb5_init()
 {  {
         krb5_error_code problem;          krb5_error_code problem;
Line 119 
Line 119 
                 return;                  return;
         }          }
   
         if ((problem = krb5_parse_name(krb_context,          if ((problem = krb5_parse_name(krb_context,
             client->exportedname.value, &princ))) {              client->exportedname.value, &princ))) {
                 logit("krb5_parse_name(): %.100s",                  logit("krb5_parse_name(): %.100s",
                     krb5_get_err_text(krb_context, problem));                      krb5_get_err_text(krb_context, problem));
Line 137 
Line 137 
   
         krb5_free_principal(krb_context, princ);          krb5_free_principal(krb_context, princ);
   
         if ((maj_status = gss_krb5_copy_ccache(&min_status,          if ((maj_status = gss_krb5_copy_ccache(&min_status,
             client->creds, ccache))) {              client->creds, ccache))) {
                 logit("gss_krb5_copy_ccache() failed");                  logit("gss_krb5_copy_ccache() failed");
                 krb5_cc_destroy(krb_context, ccache);                  krb5_cc_destroy(krb_context, ccache);

Legend:
Removed from v.1.1.4.1  
changed lines
  Added in v.1.1.4.2