diff options
author | Damien Miller <djm@mindrot.org> | 2005-11-05 05:14:59 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2005-11-05 05:14:59 +0100 |
commit | 788f212aed68781efe7aa80e625c5f8cd4d98100 (patch) | |
tree | 2325dfd810906d1b4eb02bda7a8ead19b4e9186e /sshconnect1.c | |
parent | - jmc@cvs.openbsd.org 2005/10/30 08:43:47 (diff) | |
download | openssh-788f212aed68781efe7aa80e625c5f8cd4d98100.tar.xz openssh-788f212aed68781efe7aa80e625c5f8cd4d98100.zip |
- djm@cvs.openbsd.org 2005/10/30 08:52:18
[clientloop.c packet.c serverloop.c session.c ssh-agent.c ssh-keygen.c]
[ssh.c sshconnect.c sshconnect1.c sshd.c]
no need to escape single quotes in comments, no binary change
Diffstat (limited to 'sshconnect1.c')
-rw-r--r-- | sshconnect1.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sshconnect1.c b/sshconnect1.c index bd05723c7..440d7c5bd 100644 --- a/sshconnect1.c +++ b/sshconnect1.c @@ -13,7 +13,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshconnect1.c,v 1.61 2005/06/17 02:44:33 djm Exp $"); +RCSID("$OpenBSD: sshconnect1.c,v 1.62 2005/10/30 08:52:18 djm Exp $"); #include <openssl/bn.h> #include <openssl/md5.h> @@ -84,7 +84,7 @@ try_agent_authentication(void) /* Wait for server's response. */ type = packet_read(); - /* The server sends failure if it doesn\'t like our key or + /* The server sends failure if it doesn't like our key or does not support RSA authentication. */ if (type == SSH_SMSG_FAILURE) { debug("Server refused our key."); @@ -215,8 +215,8 @@ try_rsa_authentication(int idx) type = packet_read(); /* - * The server responds with failure if it doesn\'t like our key or - * doesn\'t support RSA authentication. + * The server responds with failure if it doesn't like our key or + * doesn't support RSA authentication. */ if (type == SSH_SMSG_FAILURE) { debug("Server refused our key."); |