diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2000-12-19 22:48:09 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2000-12-19 22:48:09 +0000 |
commit | c5d02956f7af6ef386eba1f24c13a1ddb1c37b0b (patch) | |
tree | 4eb41c6bf58c55288b6e714f5e6a39887eab50e1 /usr.bin | |
parent | 9c88e5dbb416f393ba4353babc02b6970cd5ba28 (diff) |
replace <ssl/x.h> with <openssl/x.h>
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/ssh-keyscan.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ssh/ssh-keyscan.c b/usr.bin/ssh/ssh-keyscan.c index a99f546455d..5047c41411b 100644 --- a/usr.bin/ssh/ssh-keyscan.c +++ b/usr.bin/ssh/ssh-keyscan.c @@ -8,14 +8,14 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh-keyscan.c,v 1.4 2000/12/13 23:26:53 markus Exp $"); +RCSID("$OpenBSD: ssh-keyscan.c,v 1.5 2000/12/19 22:48:08 markus Exp $"); #include <sys/queue.h> #include <errno.h> -#include <ssl/bn.h> -#include <ssl/rsa.h> -#include <ssl/dsa.h> +#include <openssl/bn.h> +#include <openssl/rsa.h> +#include <openssl/dsa.h> #include "xmalloc.h" #include "ssh.h" |