summaryrefslogtreecommitdiff
path: root/ssh.c
diff options
context:
space:
mode:
Diffstat (limited to 'ssh.c')
-rw-r--r--ssh.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/ssh.c b/ssh.c
index 447878f29..f9e77220c 100644
--- a/ssh.c
+++ b/ssh.c
@@ -11,7 +11,7 @@
11 */ 11 */
12 12
13#include "includes.h" 13#include "includes.h"
14RCSID("$Id: ssh.c,v 1.14 1999/12/13 23:47:16 damien Exp $"); 14RCSID("$Id: ssh.c,v 1.15 1999/12/28 23:17:09 damien Exp $");
15 15
16#include "xmalloc.h" 16#include "xmalloc.h"
17#include "ssh.h" 17#include "ssh.h"
@@ -305,7 +305,11 @@ main(int ac, char **av)
305 case 'V': 305 case 'V':
306 fprintf(stderr, "SSH Version %s, protocol version %d.%d.\n", 306 fprintf(stderr, "SSH Version %s, protocol version %d.%d.\n",
307 SSH_VERSION, PROTOCOL_MAJOR, PROTOCOL_MINOR); 307 SSH_VERSION, PROTOCOL_MAJOR, PROTOCOL_MINOR);
308#ifndef RSAREF
308 fprintf(stderr, "Compiled with SSL.\n"); 309 fprintf(stderr, "Compiled with SSL.\n");
310#else
311 fprintf(stderr, "Compiled with SSL (RSAref version).\n");
312#endif
309 if (opt == 'V') 313 if (opt == 'V')
310 exit(0); 314 exit(0);
311 debug_flag = 1; 315 debug_flag = 1;