[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.45 and 1.46

version 1.45, 2000/04/04 15:19:42 version 1.46, 2000/04/12 07:45:44
Line 32 
Line 32 
 /* Flag indicating whether debug mode is on.  This can be set on the command line. */  /* Flag indicating whether debug mode is on.  This can be set on the command line. */
 int debug_flag = 0;  int debug_flag = 0;
   
   /* Flag indicating whether a tty should be allocated */
 int tty_flag = 0;  int tty_flag = 0;
   
 /* don't exec a shell */  /* don't exec a shell */
Line 326 
Line 327 
   
                 case 'v':                  case 'v':
                 case 'V':                  case 'V':
                         fprintf(stderr, "SSH Version %s, protocol version %d.%d.\n",                          fprintf(stderr, "SSH Version %s, protocol versions %d.%d/%d.%d.\n",
                             SSH_VERSION, PROTOCOL_MAJOR, PROTOCOL_MINOR);                              SSH_VERSION,
                               PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1,
                               PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2);
                         fprintf(stderr, "Compiled with SSL (0x%8.8lx).\n", SSLeay());                          fprintf(stderr, "Compiled with SSL (0x%8.8lx).\n", SSLeay());
                         if (opt == 'V')                          if (opt == 'V')
                                 exit(0);                                  exit(0);

Legend:
Removed from v.1.45  
changed lines
  Added in v.1.46