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

Diff for /src/usr.bin/ssh/ssh.c between version 1.4 and 1.5

version 1.4, 1999/09/29 00:10:16 version 1.5, 1999/09/29 06:15:00
Line 422 
Line 422 
   if (!host)    if (!host)
     usage();      usage();
   
     /* 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);
     }
   
   /* Initialize the command to execute on remote host. */    /* Initialize the command to execute on remote host. */
   buffer_init(&command);    buffer_init(&command);
   

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