]> andersk Git - openssh.git/blobdiff - kexdhc.c
- (tim) [configure.ac] Move CHECK_HEADERS test before platform specific
[openssh.git] / kexdhc.c
index 23abeb50dc30fa646938129010a2344334ef2b02..64de7af3088476903f0d68eb9c380dc561f7aee2 100644 (file)
--- a/kexdhc.c
+++ b/kexdhc.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: kexdhc.c,v 1.9 2006/08/03 03:34:42 deraadt Exp $ */
 /*
  * Copyright (c) 2001 Markus Friedl.  All rights reserved.
  *
 
 #include "includes.h"
 
+#include <sys/types.h>
+
+#include <stdarg.h>
+#include <stdio.h>
+#include <string.h>
+#include <signal.h>
+
 #include "xmalloc.h"
+#include "buffer.h"
 #include "key.h"
+#include "cipher.h"
 #include "kex.h"
 #include "log.h"
 #include "packet.h"
@@ -81,7 +91,7 @@ kexdh_client(Kex *kex)
        if (kex->verify_host_key(server_host_key) == -1)
                fatal("server_host_key verification failed");
 
-       /* DH paramter f, server public DH key */
+       /* DH parameter f, server public DH key */
        if ((dh_server_pub = BN_new()) == NULL)
                fatal("dh_server_pub == NULL");
        packet_get_bignum2(dh_server_pub);
This page took 0.040994 seconds and 4 git commands to generate.