summaryrefslogtreecommitdiffstats
path: root/kexdhc.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-06-13 05:00:41 +0200
committerDamien Miller <djm@mindrot.org>2006-06-13 05:00:41 +0200
commitad6b14d274762b466746519205aec9faae2f3cc3 (patch)
tree2b59f83fb0e837773e243d0f2403512845c74cbd /kexdhc.c
parent - markus@cvs.openbsd.org 2006/05/17 12:43:34 (diff)
downloadopenssh-ad6b14d274762b466746519205aec9faae2f3cc3.tar.xz
openssh-ad6b14d274762b466746519205aec9faae2f3cc3.zip
- miod@cvs.openbsd.org 2006/05/18 21:27:25
[kexdhc.c kexgexc.c] paramter -> parameter
Diffstat (limited to 'kexdhc.c')
-rw-r--r--kexdhc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kexdhc.c b/kexdhc.c
index 1f1c5ea4f..f5f01196f 100644
--- a/kexdhc.c
+++ b/kexdhc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kexdhc.c,v 1.5 2006/03/25 13:17:02 djm Exp $ */
+/* $OpenBSD: kexdhc.c,v 1.6 2006/05/18 21:27:25 miod Exp $ */
/*
* Copyright (c) 2001 Markus Friedl. All rights reserved.
*
@@ -82,7 +82,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);