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

Diff for /src/usr.bin/ssh/authfile.c between version 1.6 and 1.7

version 1.6, 1999/09/30 18:28:35 version 1.7, 1999/10/11 20:00:35
Line 211 
Line 211 
   CipherContext cipher;    CipherContext cipher;
   BN_CTX *ctx;    BN_CTX *ctx;
   BIGNUM *aux;    BIGNUM *aux;
     struct stat st;
   
   /* Read the file into the buffer. */    /* Read the file into the buffer. */
   f = open(filename, O_RDONLY);    f = open(filename, O_RDONLY);
   if (f < 0)    if (f < 0)
     return 0;      return 0;
   
     /* We assume we are called under uid of the owner of the file */
     if (fstat(f, &st) < 0 ||
         (st.st_uid != 0 && st.st_uid != getuid()) ||
         (st.st_mode & 077) != 0) {
       error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
       error("@         WARNING: UNPROTECTED PRIVATE KEY FILE!          @");
       error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
       error("Bad ownership or mode(0%3.3o) for '%s'.",
              st.st_mode & 0777, filename);
       error("It is recommended that your private key files are NOT accessible by others.");
       return 0;
     }
   
   len = lseek(f, (off_t)0, SEEK_END);    len = lseek(f, (off_t)0, SEEK_END);
   lseek(f, (off_t)0, SEEK_SET);    lseek(f, (off_t)0, SEEK_SET);

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7