[dh.c]
     remove unneeded includes; ok djm@
This commit is contained in:
Damien Miller 2006-07-24 14:05:24 +10:00
parent 8c23403b51
commit f757d22e8b
2 changed files with 5 additions and 8 deletions

View File

@ -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 $

8
dh.c
View File

@ -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"