=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/Attic/kexdhc.c,v retrieving revision 1.2.6.1 retrieving revision 1.2.6.2 diff -u -r1.2.6.1 -r1.2.6.2 --- src/usr.bin/ssh/Attic/kexdhc.c 2006/02/03 03:01:56 1.2.6.1 +++ src/usr.bin/ssh/Attic/kexdhc.c 2006/10/06 03:19:32 1.2.6.2 @@ -1,3 +1,4 @@ +/* $OpenBSD: kexdhc.c,v 1.2.6.2 2006/10/06 03:19:32 brad Exp $ */ /* * Copyright (c) 2001 Markus Friedl. All rights reserved. * @@ -22,11 +23,16 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include "includes.h" -RCSID("$OpenBSD: kexdhc.c,v 1.2.6.1 2006/02/03 03:01:56 brad Exp $"); +#include +#include +#include +#include + #include "xmalloc.h" +#include "buffer.h" #include "key.h" +#include "cipher.h" #include "kex.h" #include "log.h" #include "packet.h" @@ -82,7 +88,7 @@ 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);