mirror of git://anongit.mindrot.org/openssh.git
- miod@cvs.openbsd.org 2006/05/18 21:27:25
[kexdhc.c kexgexc.c] paramter -> parameter
This commit is contained in:
parent
40b5985fe0
commit
ad6b14d274
|
@ -10,6 +10,9 @@
|
|||
- markus@cvs.openbsd.org 2006/05/17 12:43:34
|
||||
[scp.c sftp.c ssh-agent.c ssh-keygen.c sshconnect.c]
|
||||
fix leak; coverity via Kylene Jo Hall
|
||||
- miod@cvs.openbsd.org 2006/05/18 21:27:25
|
||||
[kexdhc.c kexgexc.c]
|
||||
paramter -> parameter
|
||||
|
||||
20060521
|
||||
- (dtucker) [auth.c monitor.c] Now that we don't log from both the monitor
|
||||
|
@ -4643,4 +4646,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.4333 2006/06/13 03:00:25 djm Exp $
|
||||
$Id: ChangeLog,v 1.4334 2006/06/13 03:00:41 djm Exp $
|
||||
|
|
4
kexdhc.c
4
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);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $OpenBSD: kexgexc.c,v 1.5 2006/03/25 13:17:02 djm Exp $ */
|
||||
/* $OpenBSD: kexgexc.c,v 1.6 2006/05/18 21:27:25 miod Exp $ */
|
||||
/*
|
||||
* Copyright (c) 2000 Niels Provos. All rights reserved.
|
||||
* Copyright (c) 2001 Markus Friedl. All rights reserved.
|
||||
|
@ -120,7 +120,7 @@ kexgex_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);
|
||||
|
|
Loading…
Reference in New Issue