diff options
author | Damien Miller <djm@mindrot.org> | 2000-03-02 13:09:20 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2000-03-02 13:09:20 +0100 |
commit | a22ba0152cebff060be2de75ce2ab52a2442ea73 (patch) | |
tree | c75dbf6ce9621838f82021f2a16487b4796e5ed8 /ssh.c | |
parent | - Removed SOCKS code. Will support through a ProxyCommand. (diff) | |
download | openssh-a22ba0152cebff060be2de75ce2ab52a2442ea73.tar.xz openssh-a22ba0152cebff060be2de75ce2ab52a2442ea73.zip |
- 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.c | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -11,7 +11,7 @@ */ #include "includes.h" -RCSID("$Id: ssh.c,v 1.19 2000/02/07 02:20:26 damien Exp $"); +RCSID("$Id: ssh.c,v 1.20 2000/03/02 12:09:21 damien Exp $"); #include "xmalloc.h" #include "ssh.h" @@ -325,11 +325,7 @@ main(int ac, char **av) case 'V': fprintf(stderr, "SSH Version %s, protocol version %d.%d.\n", SSH_VERSION, PROTOCOL_MAJOR, PROTOCOL_MINOR); -#ifndef RSAREF fprintf(stderr, "Compiled with SSL.\n"); -#else - fprintf(stderr, "Compiled with SSL (RSAref version).\n"); -#endif if (opt == 'V') exit(0); debug_flag = 1; |