[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.15 and 1.15.8.1

version 1.15, 2003/11/21 11:57:02 version 1.15.8.1, 2006/02/03 03:01:55
Line 65 
Line 65 
         krb5_error_code problem;          krb5_error_code problem;
         krb5_ccache ccache = NULL;          krb5_ccache ccache = NULL;
   
         if (!authctxt->valid)  
                 return (0);  
   
         temporarily_use_uid(authctxt->pw);          temporarily_use_uid(authctxt->pw);
   
         problem = krb5_init(authctxt);          problem = krb5_init(authctxt);
Line 134 
Line 131 
                 else                  else
                         return (0);                          return (0);
         }          }
         return (1);          return (authctxt->valid ? 1 : 0);
 }  }
   
 void  void

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.15.8.1