summaryrefslogtreecommitdiff
path: root/ssh.c
diff options
context:
space:
mode:
Diffstat (limited to 'ssh.c')
-rw-r--r--ssh.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/ssh.c b/ssh.c
index 1b022402d..9e5ca116f 100644
--- a/ssh.c
+++ b/ssh.c
@@ -39,7 +39,7 @@
39 */ 39 */
40 40
41#include "includes.h" 41#include "includes.h"
42RCSID("$OpenBSD: ssh.c,v 1.95 2001/02/11 12:59:25 markus Exp $"); 42RCSID("$OpenBSD: ssh.c,v 1.96 2001/02/17 23:28:58 deraadt Exp $");
43 43
44#include <openssl/evp.h> 44#include <openssl/evp.h>
45#include <openssl/err.h> 45#include <openssl/err.h>
@@ -391,11 +391,12 @@ main(int ac, char **av)
391 } 391 }
392 /* fallthrough */ 392 /* fallthrough */
393 case 'V': 393 case 'V':
394 fprintf(stderr, "SSH Version %s, protocol versions %d.%d/%d.%d.\n", 394 fprintf(stderr,
395 "%s, SSH protocols %d.%d/%d.%d, OpenSSL 0x%8.8lx\n",
395 SSH_VERSION, 396 SSH_VERSION,
396 PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1, 397 PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1,
397 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2); 398 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2,
398 fprintf(stderr, "Compiled with SSL (0x%8.8lx).\n", SSLeay()); 399 SSLeay());
399 if (opt == 'V') 400 if (opt == 'V')
400 exit(0); 401 exit(0);
401 break; 402 break;