summaryrefslogtreecommitdiff
path: root/ssh.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-03-02 23:09:20 +1100
committerDamien Miller <djm@mindrot.org>2000-03-02 23:09:20 +1100
commita22ba0152cebff060be2de75ce2ab52a2442ea73 (patch)
treec75dbf6ce9621838f82021f2a16487b4796e5ed8 /ssh.c
parent36143d785143daabda83962a0f34404a9abf0964 (diff)
- Big cleanup of autoconf code
- Rearranged to be a little more logical - Added -R option for Solaris - Rewrote OpenSSL detection code. Now uses AC_TRY_RUN with a test program to detect library and header location _and_ ensure library has proper RSA support built in (this is a problem with OpenSSL 0.9.5).
Diffstat (limited to 'ssh.c')
-rw-r--r--ssh.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/ssh.c b/ssh.c
index 351997aba..2d9a9d96b 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.19 2000/02/07 02:20:26 damien Exp $"); 14RCSID("$Id: ssh.c,v 1.20 2000/03/02 12:09:21 damien Exp $");
15 15
16#include "xmalloc.h" 16#include "xmalloc.h"
17#include "ssh.h" 17#include "ssh.h"
@@ -325,11 +325,7 @@ main(int ac, char **av)
325 case 'V': 325 case 'V':
326 fprintf(stderr, "SSH Version %s, protocol version %d.%d.\n", 326 fprintf(stderr, "SSH Version %s, protocol version %d.%d.\n",
327 SSH_VERSION, PROTOCOL_MAJOR, PROTOCOL_MINOR); 327 SSH_VERSION, PROTOCOL_MAJOR, PROTOCOL_MINOR);
328#ifndef RSAREF
329 fprintf(stderr, "Compiled with SSL.\n"); 328 fprintf(stderr, "Compiled with SSL.\n");
330#else
331 fprintf(stderr, "Compiled with SSL (RSAref version).\n");
332#endif
333 if (opt == 'V') 329 if (opt == 'V')
334 exit(0); 330 exit(0);
335 debug_flag = 1; 331 debug_flag = 1;