]> andersk Git - openssh.git/blobdiff - ssh.c
- OpenBSD CVS Sync:
[openssh.git] / ssh.c
diff --git a/ssh.c b/ssh.c
index 1b022402d38b7b634f555877606b2ca0eb979f88..9e5ca116fe1742bbd8dac082249d416ba21b9a45 100644 (file)
--- a/ssh.c
+++ b/ssh.c
@@ -39,7 +39,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: ssh.c,v 1.95 2001/02/11 12:59:25 markus Exp $");
+RCSID("$OpenBSD: ssh.c,v 1.96 2001/02/17 23:28:58 deraadt Exp $");
 
 #include <openssl/evp.h>
 #include <openssl/err.h>
@@ -391,11 +391,12 @@ main(int ac, char **av)
                        }
                        /* fallthrough */
                case 'V':
-                       fprintf(stderr, "SSH Version %s, protocol versions %d.%d/%d.%d.\n",
+                       fprintf(stderr,
+                           "%s, SSH protocols %d.%d/%d.%d, OpenSSL 0x%8.8lx\n",
                            SSH_VERSION,
                            PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1,
-                           PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2);
-                       fprintf(stderr, "Compiled with SSL (0x%8.8lx).\n", SSLeay());
+                           PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2,
+                           SSLeay());
                        if (opt == 'V')
                                exit(0);
                        break;
This page took 0.285168 seconds and 4 git commands to generate.