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

Diff for /src/usr.bin/ssh/auth-krb5.c between version 1.4 and 1.5

version 1.4, 2002/01/27 15:12:09 version 1.5, 2002/02/15 23:54:10
Line 118 
Line 118 
         if (reply.length)          if (reply.length)
                 xfree(reply.data);                  xfree(reply.data);
   
         if (problem)          if (problem) {
                 debug("Kerberos v5 authentication failed: %s",                  if (authctxt->krb5_ctx != NULL)
                     krb5_get_err_text(authctxt->krb5_ctx, problem));                          debug("Kerberos v5 authentication failed: %s",
                               krb5_get_err_text(authctxt->krb5_ctx, problem));
                   else
                           debug("Kerberos v5 authentication failed: %d",
                               problem);
           }
   
         return (ret);          return (ret);
 }  }
Line 222 
Line 227 
         restore_uid();          restore_uid();
   
         if (problem) {          if (problem) {
                 debug("Kerberos password authentication failed: %s",                  if (authctxt->krb5_ctx != NULL)
                     krb5_get_err_text(authctxt->krb5_ctx, problem));                          debug("Kerberos password authentication failed: %s",
                               krb5_get_err_text(authctxt->krb5_ctx, problem));
                   else
                           debug("Kerberos password authentication failed: %d",
                               problem);
   
                 krb5_cleanup_proc(authctxt);                  krb5_cleanup_proc(authctxt);
   

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5