diff options
author | Damien Miller <djm@mindrot.org> | 2002-04-23 20:56:02 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2002-04-23 20:56:02 +1000 |
commit | f61c01506f8f78ccaacb55ba750a847486da3e5e (patch) | |
tree | b25f399a089bed37ce1567656a710aa299385eae | |
parent | 7a8558d3ea81935888149c89ea9b4ee69ab8d458 (diff) |
- stevesk@cvs.openbsd.org 2002/04/21 16:25:06
[sshconnect1.c]
spelling in error message; ok markus@
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sshconnect1.c | 4 |
2 files changed, 6 insertions, 3 deletions
@@ -15,6 +15,9 @@ | |||
15 | - stevesk@cvs.openbsd.org 2002/04/21 16:19:27 | 15 | - stevesk@cvs.openbsd.org 2002/04/21 16:19:27 |
16 | [sshd.8 sshd_config] | 16 | [sshd.8 sshd_config] |
17 | document default AFSTokenPassing no; ok deraadt@ | 17 | document default AFSTokenPassing no; ok deraadt@ |
18 | - stevesk@cvs.openbsd.org 2002/04/21 16:25:06 | ||
19 | [sshconnect1.c] | ||
20 | spelling in error message; ok markus@ | ||
18 | 21 | ||
19 | 20020421 | 22 | 20020421 |
20 | - (tim) [entropy.c.] Portability fix for SCO Unix 3.2v4.x (SCO OSR 3.0). | 23 | - (tim) [entropy.c.] Portability fix for SCO Unix 3.2v4.x (SCO OSR 3.0). |
@@ -8281,4 +8284,4 @@ | |||
8281 | - Wrote replacements for strlcpy and mkdtemp | 8284 | - Wrote replacements for strlcpy and mkdtemp |
8282 | - Released 1.0pre1 | 8285 | - Released 1.0pre1 |
8283 | 8286 | ||
8284 | $Id: ChangeLog,v 1.2066 2002/04/23 10:51:15 djm Exp $ | 8287 | $Id: ChangeLog,v 1.2067 2002/04/23 10:56:02 djm Exp $ |
diff --git a/sshconnect1.c b/sshconnect1.c index 3b5c7186f..d2024a2b7 100644 --- a/sshconnect1.c +++ b/sshconnect1.c | |||
@@ -13,7 +13,7 @@ | |||
13 | */ | 13 | */ |
14 | 14 | ||
15 | #include "includes.h" | 15 | #include "includes.h" |
16 | RCSID("$OpenBSD: sshconnect1.c,v 1.49 2002/03/14 15:24:27 markus Exp $"); | 16 | RCSID("$OpenBSD: sshconnect1.c,v 1.50 2002/04/21 16:25:06 stevesk Exp $"); |
17 | 17 | ||
18 | #include <openssl/bn.h> | 18 | #include <openssl/bn.h> |
19 | #include <openssl/md5.h> | 19 | #include <openssl/md5.h> |
@@ -891,7 +891,7 @@ try_challenge_response_authentication(void) | |||
891 | error("Permission denied, please try again."); | 891 | error("Permission denied, please try again."); |
892 | if (options.cipher == SSH_CIPHER_NONE) | 892 | if (options.cipher == SSH_CIPHER_NONE) |
893 | log("WARNING: Encryption is disabled! " | 893 | log("WARNING: Encryption is disabled! " |
894 | "Reponse will be transmitted in clear text."); | 894 | "Response will be transmitted in clear text."); |
895 | response = read_passphrase(prompt, 0); | 895 | response = read_passphrase(prompt, 0); |
896 | if (strcmp(response, "") == 0) { | 896 | if (strcmp(response, "") == 0) { |
897 | xfree(response); | 897 | xfree(response); |