[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.56 and 1.56.2.1

version 1.56, 2002/06/10 16:53:06 version 1.56.2.1, 2003/09/16 21:20:24
Line 187 
Line 187 
             secure_filename(f, file, pw, line, sizeof(line)) != 0) {              secure_filename(f, file, pw, line, sizeof(line)) != 0) {
                 xfree(file);                  xfree(file);
                 fclose(f);                  fclose(f);
                 log("Authentication refused: %s", line);                  logit("Authentication refused: %s", line);
                 restore_uid();                  restore_uid();
                 return (0);                  return (0);
         }          }
Line 246 
Line 246 
   
                 /* check the real bits  */                  /* check the real bits  */
                 if (bits != BN_num_bits(key->rsa->n))                  if (bits != BN_num_bits(key->rsa->n))
                         log("Warning: %s, line %lu: keysize mismatch: "                          logit("Warning: %s, line %lu: keysize mismatch: "
                             "actual %d vs. announced %d.",                              "actual %d vs. announced %d.",
                             file, linenum, BN_num_bits(key->rsa->n), bits);                              file, linenum, BN_num_bits(key->rsa->n), bits);
   

Legend:
Removed from v.1.56  
changed lines
  Added in v.1.56.2.1