diff options
author | damien <damien> | 2000-04-16 02:31:48 +0000 |
---|---|---|
committer | damien <damien> | 2000-04-16 02:31:48 +0000 |
commit | 051a29f7739eba1a8d6f848ac6994ebc9303983f (patch) | |
tree | c9860bb0365baa85fc32dd216295b78efd8a757a /auth-rsa.c | |
parent | b0072a0e6ce1099ee37a373007d920e3c87aa0ea (diff) | |
download | openssh-051a29f7739eba1a8d6f848ac6994ebc9303983f.tar.gz |
- Reduce diff against OpenBSD source
- All OpenSSL includes are now unconditionally referenced as
openssl/foo.h
- Pick up formatting changes
- Other minor changed (typecasts, etc) that I missed
Diffstat (limited to 'auth-rsa.c')
-rw-r--r-- | auth-rsa.c | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -16,7 +16,7 @@ */ #include "includes.h" -RCSID("$Id: auth-rsa.c,v 1.16 2000/04/16 01:18:39 damien Exp $"); +RCSID("$Id: auth-rsa.c,v 1.17 2000/04/16 02:31:49 damien Exp $"); #include "rsa.h" #include "packet.h" @@ -27,14 +27,8 @@ RCSID("$Id: auth-rsa.c,v 1.16 2000/04/16 01:18:39 damien Exp $"); #include "match.h" #include "servconf.h" -#ifdef HAVE_OPENSSL #include <openssl/rsa.h> #include <openssl/md5.h> -#endif -#ifdef HAVE_SSL -#include <ssl/rsa.h> -#include <ssl/md5.h> -#endif /* Flags that may be set in authorized_keys options. */ extern int no_port_forwarding_flag; |