summaryrefslogtreecommitdiff
path: root/ssh.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-02-19 21:51:08 +1100
committerDamien Miller <djm@mindrot.org>2001-02-19 21:51:08 +1100
commit225736c73acf19a3319104fe54cd9ce595924134 (patch)
tree386798cff0e4232c5dc0958b5293f7fd7e625d8e /ssh.c
parentccdefb600f9d279cd17cdca79b241a036b380b21 (diff)
- OpenBSD CVS Sync:
- reinhard@cvs.openbsd.org 2001/02/17 08:24:40 [sftp.1] typo - deraadt@cvs.openbsd.org 2001/02/17 16:28:58 [ssh.c] cleanup -V output; noted by millert - deraadt@cvs.openbsd.org 2001/02/17 16:48:48 [sshd.8] it's the OpenSSH one - markus@cvs.openbsd.org 2001/02/18 11:33:54 [dispatch.c] typo, SSH2_MSG_KEXINIT, from aspa@kronodoc.fi - markus@cvs.openbsd.org 2001/02/19 02:53:32 [compat.c compat.h serverloop.c] ssh-1.2.{18-22} has broken handling of ignore messages; report from itojun@ - markus@cvs.openbsd.org 2001/02/19 03:35:23 [version.h] OpenSSH_2.5.1 adds bug compat with 1.2.{18-22} - deraadt@cvs.openbsd.org 2001/02/19 03:36:25 [scp.c] np is changed by recursion; vinschen@redhat.com
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;