diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-18 22:27:56 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-18 22:27:56 +0000 |
commit | e2c7411094a299988cf790851abe9d180eb32252 (patch) | |
tree | 35a3b40ab572314c414d6111b8b8aa259922d6a8 /usr.bin/ssh | |
parent | 7465d774c84cda918cfd46bfc51b9cafc472ad74 (diff) |
remove unneeded includes; ok djm@
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/dh.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/usr.bin/ssh/dh.c b/usr.bin/ssh/dh.c index b3f4ceef1e8..ff31ca9918c 100644 --- a/usr.bin/ssh/dh.c +++ b/usr.bin/ssh/dh.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dh.c,v 1.36 2006/05/04 14:55:23 djm Exp $ */ +/* $OpenBSD: dh.c,v 1.37 2006/07/18 22:27:55 stevesk Exp $ */ /* * Copyright (c) 2000 Niels Provos. All rights reserved. * @@ -25,15 +25,9 @@ #include "includes.h" -#include "xmalloc.h" - #include <openssl/bn.h> #include <openssl/dh.h> -#include <openssl/evp.h> -#include "buffer.h" -#include "cipher.h" -#include "kex.h" #include "dh.h" #include "pathnames.h" #include "log.h" |