diff options
author | 2001-01-21 19:05:40 +0000 | |
---|---|---|
committer | 2001-01-21 19:05:40 +0000 | |
commit | 94dd3409f9fcf5debd9fa3029b571b40836be45f (patch) | |
tree | 1080bdcf48d87d7f7e6d8eb1e570f76b453298fc /usr.bin/ssh/key.c | |
parent | UVM and PMAP_NEW are required. (diff) | |
download | wireguard-openbsd-94dd3409f9fcf5debd9fa3029b571b40836be45f.tar.xz wireguard-openbsd-94dd3409f9fcf5debd9fa3029b571b40836be45f.zip |
split ssh.h and try to cleanup the #include mess. remove unnecessary #includes.
rename util.[ch] -> misc.[ch]
Diffstat (limited to 'usr.bin/ssh/key.c')
-rw-r--r-- | usr.bin/ssh/key.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/usr.bin/ssh/key.c b/usr.bin/ssh/key.c index 21e13b8631f..a2306fed661 100644 --- a/usr.bin/ssh/key.c +++ b/usr.bin/ssh/key.c @@ -31,12 +31,11 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ - #include "includes.h" -#include "ssh.h" -#include <openssl/rsa.h> -#include <openssl/dsa.h> +RCSID("$OpenBSD: key.c,v 1.15 2001/01/21 19:05:50 markus Exp $"); + #include <openssl/evp.h> + #include "xmalloc.h" #include "key.h" #include "rsa.h" @@ -45,8 +44,7 @@ #include "uuencode.h" #include "buffer.h" #include "bufaux.h" - -RCSID("$OpenBSD: key.c,v 1.14 2001/01/16 19:20:06 markus Exp $"); +#include "log.h" Key * key_new(int type) |