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

Diff for /src/usr.bin/ssh/ssh-keygen.c between version 1.3 and 1.4

version 1.3, 1999/09/28 19:42:05 version 1.4, 1999/09/29 06:15:00
Line 322 
Line 322 
   extern int optind;    extern int optind;
   extern char *optarg;    extern char *optarg;
   
     /* check if RSA support exists */
     if (rsa_alive() == 0) {
       extern char *__progname;
   
       fprintf(stderr,
         "%s: no RSA support in libssl and libcrypto.  See ssl(8).\n",
         __progname);
       exit(1);
     }
   
   /* Get user\'s passwd structure.  We need this for the home directory. */    /* Get user\'s passwd structure.  We need this for the home directory. */
   pw = getpwuid(getuid());    pw = getpwuid(getuid());
   if (!pw)    if (!pw)

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