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

Diff for /src/usr.bin/ssh/Attic/auth-rsa.c between version 1.57 and 1.57.2.1

version 1.57, 2003/04/08 20:21:28 version 1.57.2.1, 2004/02/28 03:51:32
Line 284 
Line 284 
  * successful.  This may exit if there is a serious protocol violation.   * successful.  This may exit if there is a serious protocol violation.
  */   */
 int  int
 auth_rsa(struct passwd *pw, BIGNUM *client_n)  auth_rsa(Authctxt *authctxt, BIGNUM *client_n)
 {  {
         Key *key;          Key *key;
         char *fp;          char *fp;
           struct passwd *pw = authctxt->pw;
   
         /* no user given */          /* no user given */
         if (pw == NULL)          if (!authctxt->valid)
                 return 0;                  return 0;
   
         if (!PRIVSEP(auth_rsa_key_allowed(pw, client_n, &key))) {          if (!PRIVSEP(auth_rsa_key_allowed(pw, client_n, &key))) {

Legend:
Removed from v.1.57  
changed lines
  Added in v.1.57.2.1