diff options
author | Damien Miller <djm@mindrot.org> | 2006-06-13 13:00:41 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2006-06-13 13:00:41 +1000 |
commit | ad6b14d274762b466746519205aec9faae2f3cc3 (patch) | |
tree | 2b59f83fb0e837773e243d0f2403512845c74cbd | |
parent | 40b5985fe0b2b8e0b78d7bf7f19bcab6018f0a64 (diff) |
- miod@cvs.openbsd.org 2006/05/18 21:27:25
[kexdhc.c kexgexc.c]
paramter -> parameter
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | kexdhc.c | 4 | ||||
-rw-r--r-- | kexgexc.c | 4 |
3 files changed, 8 insertions, 5 deletions
@@ -10,6 +10,9 @@ | |||
10 | - markus@cvs.openbsd.org 2006/05/17 12:43:34 | 10 | - markus@cvs.openbsd.org 2006/05/17 12:43:34 |
11 | [scp.c sftp.c ssh-agent.c ssh-keygen.c sshconnect.c] | 11 | [scp.c sftp.c ssh-agent.c ssh-keygen.c sshconnect.c] |
12 | fix leak; coverity via Kylene Jo Hall | 12 | fix leak; coverity via Kylene Jo Hall |
13 | - miod@cvs.openbsd.org 2006/05/18 21:27:25 | ||
14 | [kexdhc.c kexgexc.c] | ||
15 | paramter -> parameter | ||
13 | 16 | ||
14 | 20060521 | 17 | 20060521 |
15 | - (dtucker) [auth.c monitor.c] Now that we don't log from both the monitor | 18 | - (dtucker) [auth.c monitor.c] Now that we don't log from both the monitor |
@@ -4643,4 +4646,4 @@ | |||
4643 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM | 4646 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM |
4644 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu | 4647 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu |
4645 | 4648 | ||
4646 | $Id: ChangeLog,v 1.4333 2006/06/13 03:00:25 djm Exp $ | 4649 | $Id: ChangeLog,v 1.4334 2006/06/13 03:00:41 djm Exp $ |
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: kexdhc.c,v 1.5 2006/03/25 13:17:02 djm Exp $ */ | 1 | /* $OpenBSD: kexdhc.c,v 1.6 2006/05/18 21:27:25 miod Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2001 Markus Friedl. All rights reserved. | 3 | * Copyright (c) 2001 Markus Friedl. All rights reserved. |
4 | * | 4 | * |
@@ -82,7 +82,7 @@ kexdh_client(Kex *kex) | |||
82 | if (kex->verify_host_key(server_host_key) == -1) | 82 | if (kex->verify_host_key(server_host_key) == -1) |
83 | fatal("server_host_key verification failed"); | 83 | fatal("server_host_key verification failed"); |
84 | 84 | ||
85 | /* DH paramter f, server public DH key */ | 85 | /* DH parameter f, server public DH key */ |
86 | if ((dh_server_pub = BN_new()) == NULL) | 86 | if ((dh_server_pub = BN_new()) == NULL) |
87 | fatal("dh_server_pub == NULL"); | 87 | fatal("dh_server_pub == NULL"); |
88 | packet_get_bignum2(dh_server_pub); | 88 | packet_get_bignum2(dh_server_pub); |
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: kexgexc.c,v 1.5 2006/03/25 13:17:02 djm Exp $ */ | 1 | /* $OpenBSD: kexgexc.c,v 1.6 2006/05/18 21:27:25 miod Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2000 Niels Provos. All rights reserved. | 3 | * Copyright (c) 2000 Niels Provos. All rights reserved. |
4 | * Copyright (c) 2001 Markus Friedl. All rights reserved. | 4 | * Copyright (c) 2001 Markus Friedl. All rights reserved. |
@@ -120,7 +120,7 @@ kexgex_client(Kex *kex) | |||
120 | if (kex->verify_host_key(server_host_key) == -1) | 120 | if (kex->verify_host_key(server_host_key) == -1) |
121 | fatal("server_host_key verification failed"); | 121 | fatal("server_host_key verification failed"); |
122 | 122 | ||
123 | /* DH paramter f, server public DH key */ | 123 | /* DH parameter f, server public DH key */ |
124 | if ((dh_server_pub = BN_new()) == NULL) | 124 | if ((dh_server_pub = BN_new()) == NULL) |
125 | fatal("dh_server_pub == NULL"); | 125 | fatal("dh_server_pub == NULL"); |
126 | packet_get_bignum2(dh_server_pub); | 126 | packet_get_bignum2(dh_server_pub); |