diff options
author | kris <kris@FreeBSD.org> | 2000-03-26 10:00:28 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2000-03-26 10:00:28 +0000 |
commit | 9b205c344193466ed99b9a3c58490d2f540748d4 (patch) | |
tree | 30c98fa125a13af82815ed0d63a733c3c7dc083a /crypto | |
parent | 94402db2cc73e55b85f3aca2b72f958c433c5d23 (diff) | |
download | FreeBSD-src-9b205c344193466ed99b9a3c58490d2f540748d4.zip FreeBSD-src-9b205c344193466ed99b9a3c58490d2f540748d4.tar.gz |
#include <ssl/foo.h> -> #include <openssl/foo.h>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/openssh/auth-rh-rsa.c | 5 | ||||
-rw-r--r-- | crypto/openssh/hostfile.c | 5 | ||||
-rw-r--r-- | crypto/openssh/key.c | 8 |
3 files changed, 11 insertions, 7 deletions
diff --git a/crypto/openssh/auth-rh-rsa.c b/crypto/openssh/auth-rh-rsa.c index b7adab7b..19e5cbb 100644 --- a/crypto/openssh/auth-rh-rsa.c +++ b/crypto/openssh/auth-rh-rsa.c @@ -12,6 +12,7 @@ * Rhosts or /etc/hosts.equiv authentication combined with RSA host * authentication. * + * $FreeBSD$ */ #include "includes.h" @@ -23,8 +24,8 @@ RCSID("$Id: auth-rh-rsa.c,v 1.11 2000/03/23 22:15:33 markus Exp $"); #include "uidswap.h" #include "servconf.h" -#include <ssl/rsa.h> -#include <ssl/dsa.h> +#include <openssl/rsa.h> +#include <openssl/dsa.h> #include "key.h" #include "hostfile.h" diff --git a/crypto/openssh/hostfile.c b/crypto/openssh/hostfile.c index eca68da..03be7e0 100644 --- a/crypto/openssh/hostfile.c +++ b/crypto/openssh/hostfile.c @@ -11,6 +11,7 @@ * * Functions for manipulating the known hosts files. * + * $FreeBSD$ */ #include "includes.h" @@ -19,8 +20,8 @@ RCSID("$OpenBSD: hostfile.c,v 1.14 2000/03/23 22:15:33 markus Exp $"); #include "packet.h" #include "match.h" #include "ssh.h" -#include <ssl/rsa.h> -#include <ssl/dsa.h> +#include <openssl/rsa.h> +#include <openssl/dsa.h> #include "key.h" #include "hostfile.h" diff --git a/crypto/openssh/key.c b/crypto/openssh/key.c index 6ad35cb..1834420 100644 --- a/crypto/openssh/key.c +++ b/crypto/openssh/key.c @@ -25,6 +25,8 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * $FreeBSD$ */ /* * read_bignum(): @@ -33,9 +35,9 @@ #include "includes.h" #include "ssh.h" -#include <ssl/rsa.h> -#include <ssl/dsa.h> -#include <ssl/evp.h> +#include <openssl/rsa.h> +#include <openssl/dsa.h> +#include <openssl/evp.h> #include "xmalloc.h" #include "key.h" |