summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-07-24 14:05:24 +1000
committerDamien Miller <djm@mindrot.org>2006-07-24 14:05:24 +1000
commitf757d22e8b72b04d5a9228e2075649ded14314db (patch)
tree9f1dbf9859642b0eda94536c1488fda5af70e515
parent8c23403b5141b2cc570a8b55805855eea93d875a (diff)
downloadopenssh-git-f757d22e8b72b04d5a9228e2075649ded14314db.tar.gz
- stevesk@cvs.openbsd.org 2006/07/18 22:27:55
[dh.c] remove unneeded includes; ok djm@
-rw-r--r--ChangeLog5
-rw-r--r--dh.c8
2 files changed, 5 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 6eda0ee6..11e218d4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -49,6 +49,9 @@
- dtucker@cvs.openbsd.org 2006/07/18 08:22:23
[sshd_config.5]
Clarify description of Match, with minor correction from jmc@
+ - stevesk@cvs.openbsd.org 2006/07/18 22:27:55
+ [dh.c]
+ remove unneeded includes; ok djm@
20060713
- (dtucker) [auth-krb5.c auth-pam.c] Still more errno.h
@@ -4967,4 +4970,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
-$Id: ChangeLog,v 1.4419 2006/07/24 04:05:08 djm Exp $
+$Id: ChangeLog,v 1.4420 2006/07/24 04:05:24 djm Exp $
diff --git a/dh.c b/dh.c
index b3f4ceef..ff31ca99 100644
--- a/dh.c
+++ b/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"