summaryrefslogtreecommitdiff
path: root/packet.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-04-04 14:57:08 +1000
committerDamien Miller <djm@mindrot.org>2000-04-04 14:57:08 +1000
commit9f98f06c89afad9c8f32d496c07f3bf44e7dc906 (patch)
treee1b3a6eba9dd11ca637d08ee3518849b83dca5a1 /packet.c
parent2acd082bc97f0f6d0a8ca510d3945b4262922ed3 (diff)
Removed excess seed_rng calls
Diffstat (limited to 'packet.c')
-rw-r--r--packet.c16
1 files changed, 12 insertions, 4 deletions
diff --git a/packet.c b/packet.c
index 3875d8f9b..39629a5ef 100644
--- a/packet.c
+++ b/packet.c
@@ -17,7 +17,7 @@
17 */ 17 */
18 18
19#include "includes.h" 19#include "includes.h"
20RCSID("$Id: packet.c,v 1.14 2000/04/04 04:39:03 damien Exp $"); 20RCSID("$Id: packet.c,v 1.15 2000/04/04 04:57:08 damien Exp $");
21 21
22#include "xmalloc.h" 22#include "xmalloc.h"
23#include "buffer.h" 23#include "buffer.h"
@@ -35,9 +35,17 @@ RCSID("$Id: packet.c,v 1.14 2000/04/04 04:39:03 damien Exp $");
35#include "compat.h" 35#include "compat.h"
36#include "ssh2.h" 36#include "ssh2.h"
37 37
38#include <ssl/bn.h> 38#ifdef HAVE_OPENSSL
39#include <ssl/dh.h> 39# include <openssl/bn.h>
40#include <ssl/hmac.h> 40# include <openssl/dh.h>
41# include <openssl/hmac.h>
42#endif /* HAVE_OPENSSL */
43#ifdef HAVE_SSL
44# include <ssl/bn.h>
45# include <ssl/dh.h>
46# include <ssl/hmac.h>
47#endif /* HAVE_SSL */
48
41#include "buffer.h" 49#include "buffer.h"
42#include "kex.h" 50#include "kex.h"
43#include "hmac.h" 51#include "hmac.h"